My questions is how can join two or more data frames in system R?
For example:
I have two data frames:
first:
x y z 1 3 2 4 2 4 5
You have the right idea using rbind(), but it's much more simple. If your data frames are named "first" and "second":
f <- rbind(first, second)
And f is the new data frame.