Learn R Programming

FSK2R (version 0.1.3)

export_fsk: Exports an object of FSK class as an .fskx file

Description

Exports an object of FSK class as an .fskx file

Usage

export_fsk(fsk_object, out_path, check = TRUE)

Arguments

fsk_object

The instance of FSK2R to be exported.

out_path

Path where the file is to be saved.

check

Whether checks are made. TRUE by default.

Value

None

Examples

Run this code
# NOT RUN {
 path_example <- system.file("extdata", "ToyModelv4.fskx", package = "FSK2R")
 my_fsk <- import_fsk(path_example)
 class(my_fsk)
 export_fsk(my_fsk, out_path=file.path(tempdir(), "out.fskx"))
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab