Hello,

I have a list of vectors (all the same length). How to convert the list 
to a matrix? Each vector should be a column.
I tried this:

l <- list(c(1,2,3),c(1,2,3),c(1,2,3))
mat <- matrix( unlist(l), nrow=length(l) )

But I think this is not very efficient. Is there a better solution?

Thanks
Markus

-- 
Dipl.-Tech. Math. Markus Schmidberger

Ludwig-Maximilians-Universität München
IBE - Institut für medizinische Informationsverarbeitung,
Biometrie und Epidemiologie
Marchioninistr. 15, D-81377 Muenchen
URL: http://ibe.web.med.uni-muenchen.de 
Mail: Markus.Schmidberger [at] ibe.med.uni-muenchen.de

______________________________________________
R-help@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.

Reply via email to