R package notes
Notes on making an R package
library(devtools)andload_all()will load your package.- All your library imports should go under
importssection inDESCRIPTION. - To actually use the functions from other packages, need to tag the function with
@importfrom