Skip to content

Instantly share code, notes, and snippets.

@jrnold
Created May 30, 2015 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jrnold/fe1275f1c7c722dfb1c6 to your computer and use it in GitHub Desktop.
Save jrnold/fe1275f1c7c722dfb1c6 to your computer and use it in GitHub Desktop.
Using a list as an environment in R
list_of_stuff <-
list(a = rnorm(100),
b = rnorm(100))
with(list_of_stuff, plot(a, b))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment