Re: [R] Find classes of each column of data.frame()

2008-07-01 Thread Wacek Kusnierczyk
Dong-hyun Oh wrote: > Dear UseRs, > > I would like to know the way to find classes of each column of > data.frame(). > sapply(, class) vQ __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

Re: [R] Find classes of each column of data.frame()

2008-07-01 Thread Dong-hyun Oh
many thanks. On Jul 1, 2008, at 4:00 PM, Henrique Dallazuanna wrote: sapply(your_data, class) On Tue, Jul 1, 2008 at 10:50 AM, Dong-hyun Oh <[EMAIL PROTECTED]> wrote: Dear UseRs, I would like to know the way to find classes of each column of data.frame(). Thank you in advance.

Re: [R] Find classes of each column of data.frame()

2008-07-01 Thread Dong-hyun Oh
Many thanks. On Jul 1, 2008, at 3:57 PM, Romain Francois wrote: sapply( iris, class ) Dong-hyun Oh wrote: Dear UseRs, I would like to know the way to find classes of each column of data.frame(). Thank you in advance. = Dong-hyun

Re: [R] Find classes of each column of data.frame()

2008-07-01 Thread Henrique Dallazuanna
sapply(your_data, class) On Tue, Jul 1, 2008 at 10:50 AM, Dong-hyun Oh <[EMAIL PROTECTED]> wrote: > Dear UseRs, > > I would like to know the way to find classes of each column of > data.frame(). > > Thank you in advance. > > > > > = > Dong-h

Re: [R] Find classes of each column of data.frame()

2008-07-01 Thread Gabor Csardi
A data frame is a special list: > d <- data.frame( A=numeric(), B=logical(), C=character() ) > lapply(d, class) $A [1] "numeric" $B [1] "logical" $C [1] "factor" Gabor On Tue, Jul 01, 2008 at 03:50:18PM +0200, Dong-hyun Oh wrote: > Dear UseRs, > > I would like to know the way to find classes o

[R] Find classes of each column of data.frame()

2008-07-01 Thread Dong-hyun Oh
Dear UseRs, I would like to know the way to find classes of each column of data.frame(). Thank you in advance. = Dong-hyun Oh Center of Excellence for Science and Innovation Studies Royal Institute or Technology, Sweden e-mail: [EMAI