Re: [Rd] unlist change the ordered type

2008-10-26 Thread cgenolin
Charles C. Berry [EMAIL PROTECTED] a écrit : On Fri, 24 Oct 2008, Christophe Genolini wrote: Hi the list, unlist respect the all the atomic type except orderd (it change of ordered into factor) : ### integer class(unlist(list(1:5,1:3))) #[1] integer ### numeric

[Rd] unlist change the ordered type

2008-10-24 Thread Christophe Genolini
Hi the list, unlist respect the all the atomic type except orderd (it change of ordered into factor) : ### integer class(unlist(list(1:5,1:3))) #[1] integer ### numeric class(unlist(list(1.2,3.5))) #[1] numeric ### character class(unlist(list(e,e))) #[1] character ### factor

Re: [Rd] unlist change the ordered type

2008-10-24 Thread Charles C. Berry
On Fri, 24 Oct 2008, Christophe Genolini wrote: Hi the list, unlist respect the all the atomic type except orderd (it change of ordered into factor) : ### integer class(unlist(list(1:5,1:3))) #[1] integer ### numeric class(unlist(list(1.2,3.5))) #[1] numeric ### character