Skip to contents

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.

Usage

assign_list_globally(x)

Arguments

x

list object.

Value

The global environment invisibly.

Examples

if (FALSE) { # \dontrun{
mylist <- dplyr::lst(
  table1 = mtcars,
  table2 = mtcars,
  table3 = mtcars
)

assign_list_globally(mylist)
} # }