[R] Help with "split".
Peter Dalgaard
p.dalgaard at biostat.ku.dk
Thu Feb 25 13:13:24 CET 2010
rkevinburton at charter.net wrote:
> I read in the documentation for split:
>
> ‘split’ divides the data in the vector ‘x’ into the groups defined by ‘f’.
>
> But I am still unclear as to its function. Take for example:
>
> x <- 1:4
> split(x, c(0,1))
> $`0`
> [1] 1 3
>
> $`1`
> [1] 2 4
>
> I am not clear on how this result is reached.
Usual recycling rule: Same result as split(x, c(0,1,0,1)).
--
O__ ---- Peter Dalgaard Øster Farimagsgade 5, Entr.B
c/ /'_ --- Dept. of Biostatistics PO Box 2099, 1014 Cph. K
(*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918
~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk) FAX: (+45) 35327907
More information about the R-help
mailing list