Skip to content

Instantly share code, notes, and snippets.

@BroVic
Created June 30, 2021 08:18
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 BroVic/cd1577d44eff9630d27da932fca6ca85 to your computer and use it in GitHub Desktop.
Save BroVic/cd1577d44eff9630d27da932fca6ca85 to your computer and use it in GitHub Desktop.
# install.packages('xlsx')
library(dplyr)
vals <- sapply(ls(pos = "package:dplyr"), function(x) {
if (is.function(get(x)))
return(TRUE)
FALSE
})
funcs <- vals[vals]
xlsx::write.xlsx(names(funcs), file = "dplyr-funcs.xlsx")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment