Displaying 20 results from an estimated 76 matches for "visitas".
2014 Aug 25
5
problema con campos que tienen formato fecha
...4.txt", header = TRUE, sep = "\t")
#attach (BASE)
dim (BASE)
#library (lubridate)
#convertir a formato de fecha y hora
BASE <- cbind (BASE, (dmy_hms(paste(BASE$Date,BASE$Time,sep=" "))))
names (BASE)[12]<-"Time2"
#empieza rutina para calcular duración de visitas
visitas <- data.frame ()
n<-1
narbol <- 1
while (n <= dim(BASE)[1]) {
  m = n
  if (n < dim (BASE)[1]) {
    while (BASE$Registro[m+1] == "FALSE" & m+1 <= dim(BASE)[1]) {m=m+1}
    if (m+1 == dim (BASE)[1] & BASE$Registro[m+1]== "FALSE") {m+1}}
  if...
2013 Jul 10
3
ayuda con manipulación de datos
hola,
casi recien llegado a r, esta es mi primera participación en la lista,
aunque me han servido bastante entradas anteriores. gracias a todos.
tengo un problema al generar una determinada estructura de datos. A ver si
alguien me puede ayudar.
tengo un dataframe con información de visitas y productos de una web. En
cada visita se pueden hacer varias transacciones comprando varios productos
en la misma visita. La estructura sería aprox. la siguiente:
idVisita          idProducto
1                        12
1                         18
1                         21
2...
2013 Jul 11
1
ayuda con manipulación de datos
...participación en la lista,
> > aunque me han servido bastante entradas anteriores. gracias a todos.
> >
> > tengo un problema al generar una determinada estructura de datos. A ver
> si
> > alguien me puede ayudar.
> >
> > tengo un dataframe con información de visitas y productos de una web. En
> > cada visita se pueden hacer varias transacciones comprando varios
> productos
> > en la misma visita. La estructura sería aprox. la siguiente:
> >
> > idVisita          idProducto
> > 1                        12
> > 1...
2023 Jul 19
0
Estimado/a: Guía Integral de Visitas de Seguridad en el Ambiente de Trabajo
stps
Estimado/a
Espero que te encuentres bien. Me complace invitarte a participar en nuestro curso online (18 de agosto 2023) "Gu?a Integral de Visitas de Seguridad en el Ambiente de Trabajo: STPS-IMSS-SINAPROC". Este curso te brindar? las herramientas necesarias para desarrollar pol?ticas de contrataci?n o realizar ajustes contractuales, con el objetivo de fundamentar la reducci?n de la jornada laboral, ajustes salariales y modificaciones en...
2023 Aug 03
0
visitas de inspección
C?mo estar Preparado ante.. Visitas de Inspecci?n en Materia de
Aguas Nacionales
y Descargas Residuales
Su empresa, sin importar cu?n aparentemente libre de peligros, puede estar en riesgo.
?Aseg?rese estar listo para una inspecci?n de arriba a abajo sin previo aviso!
Este 18 de Agosto estaremos presentaremos el curso virtua...
2013 Jul 10
0
ayuda con manipulación de datos
...ien llegado a r, esta es mi primera participación en la lista,
> aunque me han servido bastante entradas anteriores. gracias a todos.
>
> tengo un problema al generar una determinada estructura de datos. A ver si
> alguien me puede ayudar.
>
> tengo un dataframe con información de visitas y productos de una web. En
> cada visita se pueden hacer varias transacciones comprando varios productos
> en la misma visita. La estructura sería aprox. la siguiente:
>
> idVisita          idProducto
> 1                        12
> 1                         18
> 1...
2014 Aug 25
2
problema con campos que tienen formato fecha
Hola a todos,
Tengo la siguiente inquietud, espero me puedan ayudar.
Tengo una base de datos de la que estoy haciendo varios cálculos. Uno de
ellos es la diferencia entre tiempos para conocer la duración de un evento.
Aquí usé el paquete lubridate para tener fecha y hora en el formato
adecuado. Cuando hago el calculo obtengo algo como esto:
> (BASE$Time2[518]-BASE$Time2[516])
Time difference
2003 Nov 02
5
booting initramfs
Hi all
I'm trying to boot with initramfs
I build my own root fs, and the kernel build links it, I have
double checked this
when the kernel boots unpack_to_rootfs() returns no error, so
it continues and ....
when It tries to mount the rootfs it tries to mount from 
an IDE device (where the kernel was built from), and not from 
the initramfs "image"
I think this is not documented
2006 Nov 01
6
Java Web Phone
Hello list partners
you know about a softphone made in java attachable in a web page?
GNU!
Thaks in advance!______________________________
Visita http://www.tutopia.com y comienza a navegar m?s r?pido en Internet. Tutopia es Internet para todos.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2011 Nov 21
2
ordenar de mayor a menor
Hola, tengo una tonteria que no me sale. Esta tablita esta ordenada de menor a mayor.
Como hago para invertir el orden (de mayor a menor) ?
Gracias
    puerto                 visitas medias
3  Aldán-Hio             4.00
59    Tarifa                11.95
13 Camariñas           99.00
23 Cudillero            170.40
38   Mundaca        198.27
57   Suances            211.70
	[[alternative HTML version deleted]]
2004 Jan 14
3
summary() within a function
I have the following function
f <- function {
	...
	model <- lm(rttx[,1] ~ rttx[,2] + 0);
	summary(model);
	...
}
while summary(model) shows the summary if I execute the function line by line
in the Command Line Interface, if I call f() summary is silent
how to solve it? or is there workaround?
thanks in advance
	Ulisses
                Debian GNU/Linux: a dream come true
2007 Nov 05
2
Disable USB storage
Hello Everyone!
i need to know if there is a way to send to windows XP a key reg to disable the usb storage, my samba is a PDC.
the key in the window's registry is HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UsbStor
       
---------------------------------
Comparte video en la ventana de tus mensajes (y tambi?n tus fotos de Flickr).
Usa el nuevo Yahoo! Messenger versi?n Beta.
2003 Oct 27
3
assign a constant to a different column for each row
Hi all
I want to assign a constant to a different column for each row
eg:
m[1,2] <- 0;
m[2,3] <- 0;
m[3,1] <- 0;
m[4,2] <- 0;
m[5,1] <- 0;
...
etc...
          
i've tried apply/tapply with no luck
and also the following
coefs <- rtt.abs[,5:8];
coefs.i <- coefs[] == 1;
coefs[coefs.i] <- 0;
wich results in
"matrix subscripts not allowed in replacement" 
2001 Apr 05
3
increasing the size of the journal data file
Hi all
I'm running succesfully 2.2.19pre13ext3
as mentioned in the subject line, I would like to increase the journal file
I have the jfs/* and ext3/* files and I believe that:
+ asigning a new journal (-o journal=[new inode or increased inode]) data can solve it
+ increasing the actual file _appending zeroes_ to it can be used to increase
it online, however the new space will not be
2004 Jan 26
5
conditional assignment
Hi all
I want to conditionally operate on certain elements of a matrix, let me
explain it with a simple vector example
> z<- c(1, 2, 3)
> zz <- c(0,0,0)
> null <- (z > 2) & ( zz <- z)
> zz
[1] 1 2 3
why zz is not (0, 0, 3) ?????
the null <- assignment is to keep the console silent
in the other hand, it curious that null has reasonable values
> null
[1]
2009 Oct 28
4
Insertar filas en un data frame
Hola,
Por favor, necesito insertar una fila debajo de las filas que tengan DV 
distinto de cero, pero no me deja insertar hasta el final de la tabla.
Esta es mi tabla y este es el código con el que estoy apurado.
C ID TIME DV AMT RATE CMT SS II EVID GRUPO VISITA DOSIS VECES FORMA NAP 
EDAD SEXO ALTURA PESO
 11 0 0 3 0 1 1 12 1 3 0 3 2 1 0 77 2 147 74
 11 1.417 0.001 0 0 2 0 0 0 3 0 3 2 1 0.001
2023 Mar 28
0
Aviso CONAGUA
...a de inspecci?n y procedimientos administrativos en Materia de Aguas Nacionales y Descargas Residuales
21 de Abril 2023 / Conferencia Online en Vivo
CONAGUA
COMISI?N NACIONAL DEL AGUA 
Le invitamos a participar en esta conferencia online para que conozca a detalle c?mo enfrentar con ?xito las visitas de inspecci?n y procedimientos administrativos de la CONAGUA para evitar pagar multas de hasta 2.5 millones de pesos. 
M?s informaci?n
Le mando el PDF informativo para poder revisarlo, responda "TEMARIO-CONAGUA" y sus datos de contacto:
- Nombre:
- Empresa:
- Tel?fono:
- Email:...
2006 Jan 16
2
AGI variables
When I read variables in AGI scripts, I see only the follwing 13 variables
agi_request
agi_channel
agi_language
agi_type
agi_uniqueid
agi_callerid
agi_dnid
agi_rdnis
agi_context
agi_extension
agi_priority
agi_enhanced
agi_accountcode
beside these, I found following variables documented on several sites.
agi_calleridname
agi_callingpres
agi_callingani2
agi_callington
agi_callingtns
Where can I
2017 Jan 31
1
Migration from Win2K server AD to Linux Samba4 AD
Hello !!
_PRODUCTION ENV_ - I currently using 2 Win2K AD servers, 1 Win2012 File 
Server and about 100 pc on the same domain (domain A)
_TEST__ENV_ - I just created 2 Linux Debian8 Samba4 AD servers with a 
different domain (domain B) and I'm using 1 pc (joined to the domain B) 
to test the new environment.
My problem is to access from the new Samba environment (pc/users joined 
on domain
2006 Jun 12
2
transferring calls from ekiga to asterisk
I have ekiga registering to a voip provider (skypho) and receiving
external call
through the stun server.
I want to redirect inconditionally all these calls to my asterisk
server, but I can't understand how and what should I configure in
asterisk in order to accept the redirected call.
In asterisk console I can't see nothing when ekiga passes the call.
If I turn asterisk's sip