io_yamlet.yamlet {yamlet} | R Documentation |
Export Yamlet
Description
Exports yamlet.
The archetype method for io_yamlet
.
Similar to write_yamlet
but returns (description of) con
.
Usage
## S3 method for class 'yamlet'
io_yamlet(
x,
con = stdout(),
eol = "\n",
useBytes = FALSE,
default_keys = getOption("yamlet_default_keys", list("label", "guide")),
fileEncoding = getOption("encoding"),
...
)
Arguments
x |
yamlet |
con |
passed to |
eol |
end-of-line; passed to |
useBytes |
passed to |
default_keys |
character: default keys for the first n anonymous members of each element |
fileEncoding |
if |
... |
passed to |
Value
invisible description of con: i.e., a file path
See Also
Other io:
io_csv()
,
io_csv.character()
,
io_csv.data.frame()
,
io_res()
,
io_res.character()
,
io_res.decorated()
,
io_table()
,
io_table.character()
,
io_table.data.frame()
,
io_yamlet()
,
io_yamlet.character()
,
io_yamlet.data.frame()
Examples
library(csv)
file <- system.file(package = 'yamlet', 'extdata','quinidine.csv')
x <- decorate(file)
out <- file.path(tempdir(), 'out.yamlet')
io_yamlet(as_yamlet(x), out)
io_yamlet(out)
[Package yamlet version 1.2.0 Index]