Skip to contents

Create a data frame by "extracting" the covariates column contained in an dataset downloaded with pplr_get_data().

Usage

pplr_cov_unpack(input)

Arguments

input

An object of class get_data.

Value

A data frame whose columns represent the covariates of the dataset downloaded via pplr_get_data(). Note that these covariates are contained in the covariates column datasets downloaded using pplr_get_data().

Examples

if (FALSE) {
library(dplyr)
demo_d <- pplr_get_data(proj_metadata_key == 8)
as.tbl( pplr_cov_unpack( demo_d ) )
}