Using unpack to Manage Your R Environment
Win-Vector Blog 2020-01-21
Summary:
In our last note we stated that unpack is a good tool for load R RDS files into your working environment. Here is the idea expanded into a worked example. # remotes::install_github("WinVector/wrapr") library(wrapr) a <- 5 b <- 7 do_not_want <- 13 # save the elements of our workspace we want saveRDS(as_named_list(a, b), 'example_data.RDS') # … Continue reading Using unpack to Manage Your R Environment