Skip to content

Instantly share code, notes, and snippets.

@tonglu
Last active August 29, 2015 14:06
Show Gist options
  • Save tonglu/ddf77b7a548615a4913f to your computer and use it in GitHub Desktop.
Save tonglu/ddf77b7a548615a4913f to your computer and use it in GitHub Desktop.
# rlist
# http://cran.r-project.org/web/packages/rlist/rlist.pdf
default <- list(a = 1, b = 2)
new <- list(b = 3)
list.merge(default, new) #new would overwrite default
list.join(default, new, "b")
# package::ff
# http://cran.r-project.org/web/packages/ff/index.html
# doing complicated operations on disk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment