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.characte
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 wrote:
> Hi
>
> I have a charac
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:
3 matches
Mail list logo