get.transpose: Transpose a data frame

View source: R/data_transforms.R

get.transposeR Documentation

Transpose a data frame

Description

Transpose a data frame

Usage

get.transpose(df)

Arguments

df

Data frame to be transposed

Value

The transposed data frame. First variable entries become column names.

Examples

service <- c("Sign up")
description <- c("Email will\r\n\t\t\t\t\t\t\t be sent to the registered 
address from aqsdatamart@epa.gov.")
df <- data.frame(service, description)
t.df <- epair:::get.transpose(df)
t.df

GLOrozcoM/epair documentation built on July 28, 2022, 9:01 p.m.