Learn R Programming

metan (version 1.19.0)

transpose_df: Transpose a data frame

Description

[Experimental]

Is an alternative to t() to transpose a data frame. The first column of df will become column names in the transposed data.

Usage

transpose_df(df)

Value

A tibble containing the transposed data.

Arguments

df

A data frame to be transposed.

Examples

Run this code
# \donttest{
library(metan)
df <-
data.frame(
 GEN = c("G1", "G2", "G3","G4"),
 E1 = rnorm(4, 100, 20),
 E2 = rnorm(4, 10, 2),
 E3 = rnorm(4, 50, 5),
 E4 = rnorm(4, 1000, 150)
)
df
t(df)
transpose_df(df)
# }

Run the code above in your browser using DataLab