get_metadata {Tplyr}R Documentation

Get the metadata dataframe from a tplyr_table

Description

Pull out the metadata dataframe from a tplyr_table to work with it directly

Usage

get_metadata(t)

Arguments

t

A Tplyr table with metadata built

Value

Tplyr metadata dataframe

Examples

t <- tplyr_table(mtcars, gear) %>%
  add_layer(
    group_desc(wt)
  )

t %>%
  build(metadata=TRUE)

get_metadata(t)

[Package Tplyr version 1.2.1 Index]