If I have two vectors
v1 = c(1, 2, 3)
v2 = c(4, 5, 6)
and I'd like to combine them into
v3
[1] 1 4 2 5 3 6
Is there a simple function to do this, or should I do it manually?
If I have two vectors
v1 = c(1, 2, 3)
v2 = c(4, 5, 6)
and I'd like to combine them into
v3
[1] 1 4 2 5 3 6
Is there a simple function to do this, or should I do it manually?