Sorry I could not find similar questions here.
I am trying to combine two data frames,
a <- c(a, b, c, d)
b <- c(x, y, z)
result
should be
result <- c(a,b,c,d,x,y,z)
I have tried paste
, it did not work.
Sorry I could not find similar questions here.
I am trying to combine two data frames,
a <- c(a, b, c, d)
b <- c(x, y, z)
result
should be
result <- c(a,b,c,d,x,y,z)
I have tried paste
, it did not work.