Writes a data.frame() to an ARFF file.
Limitations:
Logicals are written as categorical features.
POSIXct columns are converted to UTC.
Usage
write_arff(data, path, relation = deparse(substitute(data)))Arguments
- data
(
data.frame())
Data to write.- path
(
character(1))
Path or URI of the ARFF file, passed tofile().- relation
(
character(1))
Relation (name) of the data set.