| export_yaml {validate} | R Documentation |
Translate an object to yaml format and write to file.
export_yaml(x, file, ...) as_yaml(x, ...) ## S4 method for signature 'expressionset' export_yaml(x, file, ...) ## S4 method for signature 'expressionset' as_yaml(x, ...)
x |
An R object |
file |
A file location or connection (passed to |
... |
Options passed to |
Both validator and indicator objects can be
exported.
v <- validator(x > 0, y > 0, x + y == z) txt <- as_yaml(v) cat(txt) # NOTE: you can safely run the code below. It is enclosed in 'not run' # statements to prevent the code from being run at test-time on CRAN ## Not run: export_yaml(v, file="my_rules.txt") ## End(Not run)