Displaying 20 results from an estimated 362 matches for "originale".
Did you mean:
original
2012 Apr 02
2
graficar superficie de respuesta con los valores de las variables originales ...
...ie de respuesta ajustada y ésta
se ha ajustado codificando las variables, de acuerdo a la recomendación de
la documentación del paquete rsm, obtengo un gráfico con los ejes en
unidades codificadas ... la pregunta es: hay alguna forma de obtener el
gráfico de superficie de respuesta con las unidades originales habiendo
ajustado la superficie de respuesta con las unidades codificadas ?
saludos y muchas gracias por vuestro tiempo y ayuda,
eric.
--
Nota: las tildes se han omitido para evitar conflictos con algunos lectores
de correo.
* Un economista es un experto que sabrá mañana por qué las cosas...
2020 Feb 15
2
Colocar objeto Dates dentro de un vector.
...tentar poner un objeto Dates en un
vector o dataframe.
Mi ejemplo
# preliminares
install.packages( lubridate ); library( lubridate )
v <- c(0, 0, 0)
original<-c(2019,308,1700, 25) # c(año, día del año, hora, temperatura)
esto sale así de un sensor de temperatura
# convertimos los datos originales en algo que entienda R
a <- years(original[1] )
d <- days(original[2]-1 ) # el -1 es un ajuste por como son los datos
originales
h <- hours( substr(original[3], 1, 2) )
fecha <- a+d+h # Conseguimos una fecha completa
fecha.b <- as.Date(fecha, origin="0000-01-01"...
2015 Apr 30
2
búsqueda y sustitución masiva
...url únicas con su equivalente ya
descomprimido llegando a un registro de 900.
El problema que tengo es que estoy intentando hacer un loop para hacer la
sustitución de la url comprimida por su equivalente descomprimido, pero no
hay manera.
Los datos que tengo son:
url.origin$V1 es la lista de url originales (más de 15K)
url.des$url1 es la lista de url originales únicas
url.des$url2 es la lista de url descomprimidas equivalentes a url.des$url1
El último código con el que he probado es el siguiente pero sin buenos
resultados:
recoderFunc <- function(data, oldvalue, newvalue) {
# convertir los...
2006 Feb 02
4
How to force a vector to be column or row vector?
Hi all,
I tended to use rbind, or cbind to force a vector be be deemed as a column
or row vector. This is very important if I want to do things like u' * A *
u, where u' is a row vector and u is a column vector, regardless of what
originall format the "u" is... I want to recast it to column vector or row
vector... How can I do that?
2007 Jul 16
1
R:Re: Can''t migrate domains
...set either in the INPUT chain and the FORWARD chain.
all other rules have target "ACCEPT" so I think they can''t do anything
bad...
Unfortunately I''m not sure to be allowed to delete the
preexisting iptables rules.
Do you think it could be my problem???
----Messaggio originale----
Da: andrea15@tin.it
Data: 16-lug-2007 10.54
AM
A: <xen-users@lists.xensource.com>
Ogg: R: Re: [Xen-users] Can'
t migrate domains
I tried so
(xend-relocation-hosts-allow ''^.*$'')
but
I had the same
results.....
debian:~# xm migrate vm01 143.225.229.138
Error:...
2017 Jan 08
2
dovecot-pigeonhole running external script ends with signal 11
Hi Stephan
currently the rpm is built based on 0.4.14
Should I try with 0.4.16? I will build it again this afternoon with the version you suggested and report back with the results.
Thanks for the help here
tobi
----- Originale Nachricht -----
Von: Stephan Bosch <stephan at rename-it.nl>
Gesendet: 08.01.17 - 11:00
An: tobster at brain-force.ch@pgp.brain-force.ch,
Dovecot Mailing List <dovecot at dovecot.org>
Betreff: Re: dovecot-pigeonhole running external script ends with signal 11
> Op 1/8/2017 om 10:00...
2013 Sep 04
3
Fwd: Bienvenido a la lista de distribución R-help-es
Hola Jose, si CONCATENAR significa APILAR, es decir, concantenar
verticalmente, por decirlo de algun modo, podrias hacerlo con rbind():
nuevovector <- rbind(vector1,vector2)
Si ademas quieres que cada valor de los vectores originales sea
identificado en el nuevovector, puedes usar:
nuevovector <- stack(vector1,vector2)
en este ultimo caso se agrega una columna adicional tipo factor, con el
nombre de la columna de los vectores originales.
lo demas no lo entiendo :)
ojala te sirva,
Slds, Eric.
On 09/03/2013 06:41 PM,...
2020 Feb 24
2
Colocar objeto Dates dentro de un vector.
...s( lubridate ); library( lubridate )
>> >> v <- c(0, 0, 0)
>> >> original<-c(2019,308,1700, 25) # c(año, día del año, hora,
>> temperatura)
>> >> esto sale así de un sensor de temperatura
>> >>
>> >> # convertimos los datos originales en algo que entienda R
>> >> a <- years(original[1] )
>> >> d <- days(original[2]-1 ) # el -1 es un ajuste por como son los datos
>> >> originales
>> >> h <- hours( substr(original[3], 1, 2) )
>> >> fecha <- a+d+h # Co...
2002 Feb 27
1
I: PATCH: Samba/Win2K renaming bug
-----Messaggio originale-----
Da: Davide Parise [mailto:d.parise@mhz.it]
Inviato: Tuesday, February 26, 2002 23:33
A: Jeremy Allison
Oggetto: R: [Samba] PATCH: Samba/Win2K renaming bug
I have the same problem, but I also have an explanation.
When You click on a multimedia file Windows Media Player opens a preview on
the...
2007 Oct 07
11
geforce 4 mx + 2.6.22 problem
Hello
i have an Imac g4 flat panel 1ghz with geforce 4mx , ubuntu gutsy and a 2.6.22 kernel .
I have tried nouveau, but i have some problem. I post also my log ...
thx
___________________________________
L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail: http://it.docs.yahoo.com/nowyoucan.html
-------------- next part --------------
A non-text attachment was
2020 Feb 17
2
Colocar objeto Dates dentro de un vector.
...plo
>> # preliminares
>> install.packages( lubridate ); library( lubridate )
>> v <- c(0, 0, 0)
>> original<-c(2019,308,1700, 25) # c(año, día del año, hora, temperatura)
>> esto sale así de un sensor de temperatura
>>
>> # convertimos los datos originales en algo que entienda R
>> a <- years(original[1] )
>> d <- days(original[2]-1 ) # el -1 es un ajuste por como son los datos
>> originales
>> h <- hours( substr(original[3], 1, 2) )
>> fecha <- a+d+h # Conseguimos una fecha completa
>> fecha...
2015 Oct 21
3
Crear variable con condiciones
Muchas gracias Javier por tu respuesta.
Si. Para obtener "dataout" se utilizan filas anteriores de acuerdo con la
disponibilidad de la variable TOENDREF para cada valor de la variable REF.
Por ejemplo, las filas 3 y 4 de "datain" son
#REF TIMEREF TOENDREF
#3 999 360 150
#4 1099 30 480
En la fila 3, el valor de TOENDREF es 150. Esto indica que hay 150
2011 Nov 09
2
R: RE: R: Re: Dos/Unix newline translating
on Debian I'm using VIM 7.2.445
on RedHat I'm using VIM 6.3.82
I verified in both systems with this command : vi -v
----Messaggio originale----
Da: robert.grasso at cedrat.com
Data: 9-nov-2011 12.04
A: <ric.castellani at alice.it>, <jdmls at yahoo.com>, <samba at lists.samba.org>
Ogg: RE: [Samba] R: Re: Dos/Unix newline translating
on Debian it is possible that you are using the orginal VI. On RedHat you must be usi...
2004 Jul 23
1
R: retrieve rows from frame assuming criterion [corrected]
sorry for my previus (WRONG)
answer, as someone already pointed out
a solution could be
subset(data, PUNTAR==c("IX49","IX48"))
> -----Messaggio originale-----
> Da: Guazzetti Stefano
> Inviato: venerd?? 23 luglio 2004 15.55
> A: 'Luis Rideau Cruz'; r-help at stat.math.ethz.ch
> Oggetto: R: [R] retrieve rows from frame assuming criterion
>
>
> Assuming your data.frame is called "data"
>
> data[data$PUN...
2014 Dec 12
1
R: Re: R: Re: Duplicate messages
Sorry, I haven't shut users.
I simply copied data between two folders
>----Messaggio originale----
>Da: absolutely_free at libero.it
>Data: 12/12/2014 13.14
>A: <dovecot at dovecot.org>
>Ogg: R: Re: R: Re: Duplicate messages
>
>Hi,
>
>I mounted both network storage on this server.
>After that, I used:
>
># nice -n 19 rsync -av --progress /mnt/old/domain...
2002 Jul 25
1
R: High CPU utilization with samba2.2.5 on HPUX 11.00
Note that the problem arises only by scanning subdirectories with a large number of files ( 3.000 files and more ).
-----Messaggio originale-----
Da: Usai, Maria Grazia
Inviato: gioved? 25 luglio 2002 11.11
A: samba@lists.samba.org
Oggetto: [Samba] High CPU utilization with samba2.2.5 on HPUX 11.00
Hello, I need some help for a strange problem.
I have an HP L2000 server ( 2 CPU and 2 GB RAM ) with HPUX 11.00 and with samba 2.2.5 i...
2005 May 30
4
R: R: R: AT-320 + supervised transfer
I known. I'm using the 1.44 firmware version relesed on 26 may. I worked for italian IVR an HTTP pgaes.
So i can only update asterisk with CVS and try atxfer.
Thanks for all
-----Messaggio originale-----
Da: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] Per conto di Gavin Hamill
Inviato: luned? 30 maggio 2005 18.40
A: asterisk-users@lists.digium.com
Oggetto: Re: R: R: [Asterisk-Users] AT-320 + supervised transfer
On Monday 30 May 2005 17:22, Giordano...
2005 May 31
2
R: R: R: R: AT-320 + supervised transfer
...nly featuremaps section):
[featuremap]
;blindxfer => ## ; Blind transfer
disconnect => *0 ; Disconnect
automon => *1 ; One Touch Record
atxfer => ## ; Attended transfer
Thanks for all
-----Messaggio originale-----
Da: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] Per conto di Gavin Hamill
Inviato: marted? 31 maggio 2005 16.21
A: asterisk-users@lists.digium.com
Oggetto: Re: R: R: R: [Asterisk-Users] AT-320 + supervised transfer
On Tuesday 31 May 2005 14:41, Gio...
2017 May 24
2
samba 4 in AD 2008R2 without winbind
----- Messaggio originale -----
> Da: "Rowland Penny" <rpenny at samba.org>
> A: samba at lists.samba.org
> Cc: "Daniele Bernazzi" <daniele at ao-siena.toscana.it>
> Inviato: Mercoledì, 24 maggio 2017 13:12:07
> Oggetto: Re: [Samba] samba 4 in AD 2008R2 without winbind
>
&g...
2006 Mar 28
3
R: Echo cancellation
Ok, but is there a way to check if echo cancellation is active on a call in progress ?
Thanks
Giordano
-----Messaggio originale-----
Da: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] Per conto di Steve Davies
Inviato: marted? 28 marzo 2006 16.43
A: Asterisk Users Mailing List - Non-Commercial Discussion
Oggetto: Re: [Asterisk-Users] Echo cancellation
On 3/28/06, Giordano Grandis &...