Skip to content

Instantly share code, notes, and snippets.

@pbaylis
Created July 4, 2020 21:16
Show Gist options
  • Save pbaylis/1eb4e579b423ed9538643362cd1532e2 to your computer and use it in GitHub Desktop.
Save pbaylis/1eb4e579b423ed9538643362cd1532e2 to your computer and use it in GitHub Desktop.
Reduce merge
Reduce(function(x, y) merge(x, y, all=TRUE), list(df1, df2, df3))
# OR #
Reduce(function(...) merge(..., all=TRUE), list(df1, df2, df3))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment