[R] cbind 3 or more matrices

baptiste auguie baptiste.auguie at googlemail.com
Sun Jun 5 01:22:12 CEST 2011


A, B, C should have the same number of rows.

mlist = replicate(3, matrix(rnorm(6), 2), simplify=FALSE)
names(mlist) = LETTERS[seq_along(mlist)]
with(mlist, cbind(A,B,C))

or,

do.call(cbind, mlist)

HTH,

baptiste

On 5 June 2011 11:14, Jim Silverton <jim.silverton at gmail.com> wrote:
> How can I cbind three or more matrices like A,B and C. This does not work:
>
> cbind(A,B,C)
>
>
> --
> Thanks,
> Jim.
>
>        [[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.
>



More information about the R-help mailing list