Skip to contents

[Experimental] This function write a Rdata file from csv, tsv, txt, xls or xlsx dataset

Usage

elter_write_rdata(myfiles, delim)

Arguments

myfiles

A character. The list of the files to deposit in Zenodo. Please provide all files only with 'csv' extension.

delim

A character. Provide the character used to separate fields within a record. Only if the extension of the file(s) are 'csv', 'tsv', or 'txt'.

Value

This function returns a rds files.

Author

Alessandro Oggioni, phD oggioni.a@irea.cnr.it

Examples

if (FALSE) {
## Not run:

elter_write_rdata(
  myfiles = c(
   "miscellaneus/file_show/data_mapping.csv",
   "miscellaneus/file_show/reference_TAXA.csv",
   "miscellaneus/file_show/reference_VARIABLES.csv"
  ),
  delim = ";"
)
}

## End (Not run)