Helper function to assign list elements into global environment
assign_list_globally.Rd
This function is a wrapper around list2env
that assigns the every object in
the list to the global environment as individual objects.
This function is useful for loading dimension tables into the global environment as individual dataframes or breaking down the prelude and pulling it into the global environment for inspection.
Examples
if (FALSE) { # \dontrun{
mylist <- dplyr::lst(
table1 = mtcars,
table2 = mtcars,
table3 = mtcars
)
assign_list_globally(mylist)
} # }