Hello everybody,
I want to add two data.frame.
One is empty and the second has 20 rows only where there are only characters.
However i want to do this one several times, with while loop.
Like this :
one <- data.frame()
#initialization of the loop
i <- 1
while (i != 10){
final <- cbind(one, two)
}
And the console answer me :
Error in data.frame(..., check.names = FALSE) :
the arguments involve different numbers of lines: 0, 20
How can i resolve it ? Because when try, simplier,
final <- cbind(one, two) ten times, it's okay...