eload takes a collection of named objects and creates or updates an environment. By default, an existing variable in the target environment will be replaced by a new value, but this can be avoided by setting preserve=TRUE. If you want to load directly into the current env, look at list2env with environment()

eload(loadDat, loadEnvir = loadrEnv(), preserve = FALSE)

Arguments

loadDat

A list or environment with named variables to load.

loadEnvir

Name (character string) for the environment to create or update.

preserve

Whether to retain the value for an already-bound name.