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