[R] problem in creating a dataframe

2011-11-22 Thread arunkumar1111
Hi I have a character class and i need to convert into dataframe data=(0,0,0,0) I want a dataframe with each one should under a separate column Please help me -- View this message in context:

Re: [R] problem in creating a dataframe

2011-11-22 Thread R. Michael Weylandt michael.weyla...@gmail.com
I believe the command you are looking for is as.data.frame(), though you are probably going to need as.double() rather soon as well. Do note that data frames can, and often do, have character elements. Best, Michael On Nov 22, 2011, at 1:21 AM, arunkumar akpbond...@gmail.com wrote: Hi

Re: [R] problem in creating a dataframe

2011-11-22 Thread Rainer Schuermann
Being new to R myself, I always get trapped by factors. Taking the data you have provided, this worked for my understanding of your intention: x - rep( 0, 4 ) x [1] 0 0 0 0 df - data.frame( matrix( x, 1 ), stringsAsFactors = FALSE ) df X1 X2 X3 X4 1 0 0 0 0 is.character( df[1,1] ) [1]