Displaying 5 results from an estimated 5 matches for "33724".
Did you mean:
33.24
2014 Mar 06
5
Identificar pares de valores en distintas filas
...actuación, en formato dd/mm/yy
VALOR: Score numérico
¿Hay algún paquete para obtener aquellos grupos ID del data frame que tengan igual par (FECHA, VALOR)?
Ejemplo:
ID
FECHA
VALOR
1
01/04/1965
25578
2
01/09/1988
23456
3
01/04/2004
76578
4
01/04/1965
25578
5
01/05/1992
33724
6
01/04/1965
65789
7
01/09/1988
23456
El resultado en este caso sería el data frame (ó la matriz):
1 4
2 7
Muchas gracias por vuestra ayuda.
[[alternative HTML version deleted]]
2014 Mar 07
2
Identificar pares de valores en distintas filas
...omun
(aqui el maximo es 3):
d <- data.frame(ID = 1:8,
FECHA = c("01/04/1965", "01/09/1988", "01/04/2004", "01/04/1965",
"01/05/1992", "01/04/1965", "01/09/1988", "01/09/1988"),
VALOR = c(25578, 23456, 76578, 25578, 33724, 65789, 23456, 23456))
d$comb <- with(d, paste0(FECHA, "_", VALOR))
s <- with(d, split(d, comb))
s <- s[sapply(s, function(l) NROW(l) > 1)] # mas de un ID
ids <- sapply(s, "[", 1)
k <- max(sapply(ids, length)) # maximo numero de IDs con FECHA/VALOR
comunes...
2014 Mar 07
2
Identificar pares de valores en distintas filas
Muchas gracias a todos por vuestras respuestas! Me han sido de gran ayuda.
Carlos, tienes toda la razón con el tema de que podría haber casos triplicados (de hecho los hay).
Se me ocurre como solución "para salir del apuro" aplicar un intersect.
Muchas gracias.
Fco. Javier
[[alternative HTML version deleted]]
2005 Sep 15
4
how to tell if a file is older than 30 days?
I am trying to find out how to tell if a given file is 30 days or older.
How is that type of thing done in shell scripts.
Thanks,
Jerry
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20050915/e412e896/attachment.html>
2015 Aug 07
0
Wine release 1.7.49
...erroneously ignores lpdwIndex argument for some info levels
31374 Steam text invisible with dwrite.dll enabled
31640 hugin's enfuse.exe crashes without native vcomp100.dll (purist)
32637 Some VST plugins that used to work with dssi-vst now fail
33165 Star Conflict crash at startup
33724 Aliwangwang needs unimplemented function atl100.dll.AtlAxCreateControlLicEx
36087 SpinTires crashes when applying settings in windowed mode
36915 Among the Sleep crashes when starting a new game (Oculusplugin.dll needs to be disabled)
37583 Trion's Glyph MMO manager crashes on unimple...