filter.decorated {yamlet} | R Documentation |
Filter Decorated
Description
Filters a decorated data.frame. After a filter operation, promote() is called to see if ambiguous conditional attributes can be improved.
Usage
## S3 method for class 'decorated'
filter(
.data,
...,
.preserve = FALSE,
.promote = getOption("yamlet_promote", TRUE)
)
Arguments
.data |
passed to |
... |
passed to |
.preserve |
passed to |
.promote |
whether to auto-promote plural attributes |
Value
decorated
See Also
Other promote:
[.decorated()
,
promote()
,
promote.data.frame()
,
promote.list()
,
singularity()
Examples
library(magrittr)
file <- system.file(package = 'yamlet', 'extdata','phenobarb.csv')
x <- file %>% decorate
# Note that there are two elements each for value label and value guide.
x %>% decorations(event, value)
# Filtering promotes the relevant conditional attributes automatically.
x %>% filter(event == 'dose') %>% decorations(value)
x %>% filter(event == 'conc') %>% decorations(value)
[Package yamlet version 1.2.5 Index]