Displaying 9 results from an estimated 9 matches for "25578".
Did you mean:
5578
2014 Mar 06
5
Identificar pares de valores en distintas filas
...data frame com puesto por 3 columnas:
ID: Identificador individuo
FECHA: Fecha de 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
...mas IDs con FECHA y VALOR comun
(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...
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]]
2009 Jan 03
0
kcapid heavy cpu usage
...eating more cpu.Attached the top output below.Can any
one suggest me how to fix the same since it is my critical production
i need your help urgently .
Top output
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
27 root 15 -10 0 0 0 R 98 0.0 5572:18 kacpid
25578 root 16 0 6416 1208 752 R 9 0.0 0:08.96 top
6822 root 15 0 1343m 77m 14m S 4 1.0 87:21.45 java
6102 root 16 0 41192 9900 1292 S 0 0.1 0:24.37 aws_sadmin
1 root 16 0 4756 552 460 S 0 0.0 0:01.38 init
2 root RT 0 0 0...
2006 Jan 21
1
HELP: NoMethodError (undefined method `stringify_keys!'' for
We have a flash developer who is intergating with a rails application
when
he posts a particular variable (in this case ''rating'') We get a ''Rails
Application
Error'' Trawling the production log turns up this error;
NoMethodError (undefined method `stringify_keys!'' for "10":String):
The html wireframe has no such problem. A select box is
2004 Apr 29
1
I'm trying to use package ts (decompose). How do you set up the data/ See attached. thanks
...29781
Q1 32134
Q2 30048
Q3 27811
Q4 30126
Q1 26934
Q2 27758
Q3 28372
Q4 28631
Q1 29102
Q2 28372
Q3 33295
Q4 29182
Q1 30343
Q2 26944
Q3 26115
Q4 27551
Q1 25303
Q2 26854
Q3 26911
Q4 27225
Q1 28141
Q2 26710
Q3 32192
Q4 28281
Q1 28958
Q2 25624
Q3 24861
Q4 26459
Q1 23941
Q2 25578
Q3 25281
Q4 26070
Q1 26881
Q2 25496
Q3 30128
Q4 26471
2007 Jan 26
0
oom killer: gfp=mask=0xd1 - bug w/ EM64T?
..., batch 16
cpu 1 cold: low 0, high 32, batch 16
cpu 2 hot: low 32, high 96, batch 16
cpu 2 cold: low 0, high 32, batch 16
cpu 3 hot: low 32, high 96, batch 16
cpu 3 cold: low 0, high 32, batch 16
Node 0 HighMem per-cpu: empty
Free pages: 16203544kB (0kB HighMem)
Active:6029 inactive:29822 dirty:25578 writeback:1 unstable:0 free:4050886
slab:5003 mapped:4627 pagetables:272
Node 0 DMA free:0kB min:0kB low:0kB high:0kB active:0kB inactive:0kB
present:16384kB pages_scanned:2 all_unreclaimable? yes
protections[]: 0 0 0
Node 0 Normal free:16203608kB min:4216kB low:8432kB high:12648kB
active:24116kB i...
2016 Jul 27
3
Asterisk 14.0.0-beta1 Now Available
...subscribe_context to res_pjsip
(Reported by JoshE)
* ASTERISK-26159 - res_hep: enabled by default and information
sent to default address (Reported by Ross Beer)
* ASTERISK-26088 - Investigate heavy memory utilization by
res_pjsip_pubsub (Reported by Richard Mudgett)
* ASTERISK-25578 - [patch] SIP/SDP: No rtpmap for static RTP
payload IDs (Reported by Alexander Traud)
* ASTERISK-26011 - [patch]PJSIP: add "via_addr", "via_port",
"call_id" to contacts (Reported by Alexei Gradinari)
* ASTERISK-25965 - res_pjsip_outbound_publish: Allow mu...
2019 Dec 24
0
Certified Asterisk 16.3-cert1 Now Available
...rg/jira/browse/ASTERISK-25471>] -
[patch]Add subscribe_context to res_pjsip
(Reported by JoshE)
- [ASTERISK-26159
<https://issues.asterisk.org/jira/browse/ASTERISK-26159>] -
res_hep: enabled by default and information sent to default address
(Reported by Ross Beer)
- [ASTERISK-25578
<https://issues.asterisk.org/jira/browse/ASTERISK-25578>] -
[patch] SIP/SDP: No rtpmap for static RTP payload IDs
(Reported by Alexander Traud)
- [ASTERISK-26059
<https://issues.asterisk.org/jira/browse/ASTERISK-26059>] -
[patch]core: New channel variable FORWARDERNAME
(Repo...