Skip to content
Back to formatted view

Raw Message

Message-ID: <971536df0803130723p64206e92od5fe4e8ab640140b@mail.gmail.com>
Date: 2008-03-13T14:23:30Z
From: Gabor Grothendieck
Subject: How to cbind or rbind different lengths vectors/arrays without repeating the elements of the shorter vectors/arrays ?
In-Reply-To: <462b7fdd0803130713r467b58e6vcc50e33138e31729@mail.gmail.com>

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.
>