Learn R Programming

largeList (version 0.3.1)

saveList: Save or append elements to a list file.

Description

Save or append elements to a list file.

Usage

saveList(object, file, append = FALSE, compress = TRUE)

Arguments

object
A list object to save or append.
file
Name of file.
append
TRUE/FALSE, TRUE refers to truncating and saving. FALSE refers to appending.
compress
TRUE/FALSE, using compression or not.

Value

invisible TRUE if no error occurs.

Details

Save or append a list (with or without names) to a file. Notice that, all names will be truncated to 16 characters. Rest attributes of lists will be discarded. Files generated by this function are not readable by readRDS. When it takes long time to process, some verbose info will be printed to console, which can be switched off by setting options(list(largeList.report.progress = FALSE)).

See Also

largeList

Examples

Run this code
list_1 <- list("A" = c(1,2), "B" = "abc", list(1, 2, 3))

# save list_1 to file using compression.
saveList(object = list_1, file = "example.llo", append = FALSE, compress = TRUE)

# append list_1 to file, compress option will be extracted from the file.
saveList(object = list_1, file = "example.llo", append = TRUE)

Run the code above in your browser using DataLab