Ng Stanley
2008-Mar-13 14:13 UTC
[R] How to cbind or rbind different lengths vectors/arrays without repeating the elements of the shorter vectors/arrays ?
Hi, How to cbind or rbind different lengths vectors/arrays without repeating the elements of the shorter vectors/arrays ?> cbind(1:2, 1:10)[,1] [,2] [1,] 1 1 [2,] 2 2 [3,] 1 3 [4,] 2 4 [5,] 1 5 [6,] 2 6 [7,] 1 7 [8,] 2 8 [9,] 1 9 [10,] 2 10 [[alternative HTML version deleted]]
Gabor Grothendieck
2008-Mar-13 14:23 UTC
[R] How to cbind or rbind different lengths vectors/arrays without repeating the elements of the shorter vectors/arrays ?
Try converting them to time series, cbinding and unconverting: cbind(x = ts(x), y = ts(y))[TRUE, ] On Thu, Mar 13, 2008 at 10:13 AM, Ng Stanley <stanleyngkl at gmail.com> wrote:> Hi, > > How to cbind or rbind different lengths vectors/arrays without repeating the > elements of the shorter vectors/arrays ? > > > cbind(1:2, 1:10) > [,1] [,2] > [1,] 1 1 > [2,] 2 2 > [3,] 1 3 > [4,] 2 4 > [5,] 1 5 > [6,] 2 6 > [7,] 1 7 > [8,] 2 8 > [9,] 1 9 > [10,] 2 10 > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >
John Kane
2008-Mar-13 19:10 UTC
[R] How to cbind or rbind different lengths vectors/arrays without repeating the elements of the shorter vectors/arrays ?
I don't think you can. What is your desired output? You can always do c(1:2, 1:10) --- Ng Stanley <stanleyngkl at gmail.com> wrote:> Hi, > > How to cbind or rbind different lengths > vectors/arrays without repeating the > elements of the shorter vectors/arrays ? > > > cbind(1:2, 1:10) > [,1] [,2] > [1,] 1 1 > [2,] 2 2 > [3,] 1 3 > [4,] 2 4 > [5,] 1 5 > [6,] 2 6 > [7,] 1 7 > [8,] 2 8 > [9,] 1 9 > [10,] 2 10 > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, > reproducible code. >Looking for the perfect gift? Give the gift of Flickr!