read_yamlet {yamlet} | R Documentation |
Read Yamlet
Description
Reads yamlet from file.
Similar to io_yamlet.character
but also reads text fragments.
Usage
read_yamlet(
x,
...,
default_keys = getOption("yamlet_default_keys", list("label", "guide"))
)
Arguments
x |
file path for yamlet, or vector of yamlet in storage syntax |
... |
passed to |
default_keys |
character: default keys for the first n anonymous members of each element |
Value
yamlet: a named list with default keys applied
See Also
Other interface:
canonical.decorated()
,
classified.data.frame()
,
decorate.character()
,
decorate.data.frame()
,
desolve.decorated()
,
ggplot.decorated()
,
io_csv.character()
,
io_csv.data.frame()
,
io_res.character()
,
io_res.decorated()
,
io_table.character()
,
io_table.data.frame()
,
io_yamlet.character()
,
io_yamlet.data.frame()
,
is_parseable.default()
,
mimic.default()
,
modify.default()
,
promote.list()
,
resolve.decorated()
,
scripted.default()
,
selected.default()
,
write_yamlet()
Examples
library(csv)
file <- system.file(package = 'yamlet', 'extdata','quinidine.csv')
meta <- system.file(package = 'yamlet', 'extdata','quinidine.yaml')
x <- as.csv(file)
y <- read_yamlet(meta)
x <- decorate(x, meta = y)
stopifnot(identical(x, decorate(file)))