Skip to content

Instantly share code, notes, and snippets.

@klmr
Created November 12, 2015 22:53
Show Gist options
  • Save klmr/517236946a772daabbcc to your computer and use it in GitHub Desktop.
Save klmr/517236946a772daabbcc to your computer and use it in GitHub Desktop.
# https://github.com/klmr/modules
library(modules)
dplyr = import_package('dplyr', attach = TRUE)
vec = import_package('S4Vectors')
# Invokes dplyr::rename:
cars %>% tbl_df() %>% rename(Slowness = speed)
# Invoke S4Vectors::rename
vec$rename(head(cars), speed = 'Slowness')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment