decorations.data.frame {yamlet} | R Documentation |
Retrieve Decorations for Data Frame
Description
Retrieve the decorations of a data.frame; i.e., the metadata used to decorate it. Returns a list with same names as the data.frame. By default, 'class' and 'level' attributes are excluded from the result, as you likely don't want to manipulate these independently.
Usage
## S3 method for class 'data.frame'
decorations(
x,
...,
exclude_attr = getOption("yamlet_exclude_attr", c("class", "levels"))
)
Arguments
x |
data.frame |
... |
optional unquoted column names to limit output (passed to |
exclude_attr |
attributes to remove from the result |
Value
named list of class 'yamlet'
See Also
Other decorate:
as_decorated.default()
,
as_decorated()
,
decorate.character()
,
decorate.data.frame()
,
decorate.list()
,
decorate_groups.data.frame()
,
decorate_groups()
,
decorate()
,
decorations_groups.data.frame()
,
decorations_groups()
,
decorations()
,
group_by_decorations.data.frame()
,
group_by_decorations()
,
redecorate()
Examples
# prepare a decorated data.frame
file <- system.file(package = 'yamlet', 'extdata','quinidine.csv')
x <- decorate(file)
# retrieve the decorations
decorations(x, Subject, time, conc)
[Package yamlet version 1.0.3 Index]