Learn R Programming

wrapr (version 1.9.6)

as_named_list: Capture named objects as a named list.

Description

Build a named list from a sequence of named argumetn of the form NAME = VALUE.

Usage

as_named_list(...)

Arguments

...

argument names (must be names, not strings or values).

Value

a named list mapping argument names to argument values

Examples

Run this code
# NOT RUN {
a <- data.frame(x = 1)
b <- 2
str(as_named_list(a, b))

# an example application for this function is managing saving and
# loading values into the workspace.
if(FALSE) {
  # 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')

  # clear values out of our workspace for the example
  rm(list = ls())
  ls()
  # notice workspace environemnt now empty

  # read back while documenting what we expect to
  # read in
  unpack[a, b] <- readRDS('example_data.RDS')

  # confirm what we have, the extra unpack is a side
  # effect of the []<- notation. To avoid this instead
  # use one of:
  #   unpack(readRDS('example_data.RDS'), a, b)
  #   readRDS('example_data.RDS') %.>% unpack(., a, b)
  #   readRDS('example_data.RDS') %.>% unpack[a, b]
  ls()
  # notice do_not_want is not present

  print(a)

  print(b)
}

# }

Run the code above in your browser using DataLab