I have four vectors of different/changing length, say A,B,C,D . I would like to build a master vector which is made up of the top row of Vectors in A-D, and then the second highest rows of A-D.
c(A[1,1],B[1,1],C[1,1],D[1,1],A[2,1],B[2,1] ...and so on
I had this idea of cbinding A,B,C,D and then transposing each row, but due to the different lengths in A-D this cannot be done.
Note:Though A-D are of different sizes, over time they will grow as data is added.