-------- Original Message -------- Subject: [R] transposing data.frames From: Christoph Heibl <[EMAIL PROTECTED]> To: [email protected] Date: 25.06.2007 15:13 > Hello, > This must be simple... > Thanks a lot > - Christoph > > # Imagine you have a list, e.g: > > K <- list(1:10, 2:11, 9:18) > K > > # Transforming to dataframe... > > KK <- as.data.frame(K) > > # ... one obtaines the list elements as column. > > KK > > # But I need the list elements as rows > # How can I achieve this? Is there a simple way to transpose > data.frames? >
yes: t(as.data.frame(K)) > ______________________________________________ > [email protected] 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. > > > ______________________________________________ [email protected] 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.
