Learn R Programming

refdb (version 0.1.2)

refdb_write_fields: Write fields to a file

Description

This function can be used to save fields defined using e.g. refdb_set_fields to a file. Data are saved in YAML and can be read again using the config_yaml argument of refdb_set_fields.

Usage

refdb_write_fields(x, file)

Value

No return value, called for its side effects.

Arguments

x

a reference database with some fields to be saved.

file

a path to the file to write.

Examples

Run this code
lib <- read.csv(system.file("extdata", "ephem.csv", package = "refdb"))
tmp <- tempfile()
refdb_write_fields(lib, tmp)

Run the code above in your browser using DataLab