[R] types of vectors / lists

2008-03-05 Thread a9804814
Hello, I am an advanced user of R. Recently I found out that apparently I do not fully understand vectors and lists fully Take this code snippet: T = c(02.03.2008 12:23, 03.03.2008 05:54) Times = strptime(T, %d.%m.%Y %H:%M) Times # OK class(Times) # OK is.list(Times)

Re: [R] types of vectors / lists

2008-03-05 Thread Erik Iverson
Hello - [EMAIL PROTECTED] wrote: Hello, I am an advanced user of R. Recently I found out that apparently I do not fully understand vectors and lists fully Take this code snippet: T = c(02.03.2008 12:23, 03.03.2008 05:54) Times = strptime(T, %d.%m.%Y %H:%M) Times # OK

Re: [R] types of vectors / lists

2008-03-05 Thread Charilaos Skiadas
On Mar 5, 2008, at 2:56 PM, [EMAIL PROTECTED] wrote: Hello, I am an advanced user of R. Recently I found out that apparently I do not fully understand vectors and lists fully Take this code snippet: T = c(02.03.2008 12:23, 03.03.2008 05:54) Times = strptime(T, %d.%m.%Y %H:%M) Times

Re: [R] types of vectors / lists

2008-03-05 Thread Gabor Grothendieck
Read R News 4/1 article on dates. On Wed, Mar 5, 2008 at 2:56 PM, [EMAIL PROTECTED] wrote: Hello, I am an advanced user of R. Recently I found out that apparently I do not fully understand vectors and lists fully Take this code snippet: T = c(02.03.2008 12:23, 03.03.2008 05:54) Times =