Description Usage Arguments Examples
Saving to and loading from the file system
1 2 3 |
file_name |
A character string file name. |
obj_name |
A character string referring to an object. |
data_dir |
A path to a system folder. |
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
# Write object to file system
samples_frm <- data.table::fread("path_to_raw_data_file")
obj_save('thisProject_samples_frm', 'samples_frm', data_dir='data')
# load object from file system
obj_load('thisProject_samples_frm', 'samples_frm', data_dir='data')
head(samples_frm)
...
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.