Description Usage Arguments Details Value Examples
View source: R/read-RDS-to-global.R
The function provides convenience mechanism for creating R objects corresponding to names of RDS files.
1 | read_RDS_to_global(file_path, verbose = TRUE, pos = 1)
|
file_path |
Path to the RDS file. |
verbose |
A logical, if |
pos |
defaults to 1 which equals an assignment to global environment |
For instance, when executing
saved_data <- readRDS("file_path_to/saved_data.RDS")
we may do
read_RDS_to_global("file_path_to/saved_data.RDS")
.
A R object corresponding to basename
on file_path
argument.
1 2 3 4 5 6 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.