write_eml {EML} | R Documentation |
write_eml
Description
write_eml
Usage
write_eml(eml, file, namespaces = NULL, ns = "eml", ...)
Arguments
eml |
an emld class object |
file |
file name to write XML. |
namespaces |
named character vector of additional XML namespaces to use. |
ns |
root namespace abbreviation |
... |
additional arguments to |
Value
If file is not specified, the result is a character string containing the resulting XML content. Otherwise return silently.
Examples
f <- system.file("extdata", "example.xml", package = "emld")
eml <- read_eml(f)
write_eml(eml, "test.xml")
eml_validate("test.xml")
unlink("test.xml") # clean up
[Package EML version 2.0.6.1 Index]