[R] transposing data.frames

Stefan Grosse singularitaet at gmx.net
Mon Jun 25 15:20:05 CEST 2007


-------- Original Message  --------
Subject: [R] transposing data.frames
From: Christoph Heibl <christoph.heibl at gmx.net>
To: R-help at stat.math.ethz.ch
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))

> ______________________________________________
> R-help at stat.math.ethz.ch 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