write.xml: Write a data frame in XML format

View source: R/writexml.R

write.xmlR Documentation

Write a data frame in XML format

Description

Writes the data frame to a file in the XML format.

Usage

write.xml(data, file = NULL, collapse = TRUE)

Arguments

data

the data frame object to save

file

the file name to be written to.

collapse

logical. Should the output file be collapsed to make it fill less? (Defaults to TRUE)

Details

This function does not require the XML package to be installed to function properly.

Value

None

Author(s)

Claus Ekstrom, claus@rprimer.dk based on previous work by Duncan Temple Lang.

Examples


## Not run: 
data(trees)
write.xml(trees, file="mydata.xml")

## End(Not run)


MESS documentation built on Aug. 21, 2023, 1:05 a.m.

Related to write.xml in MESS...