Develop R Packages Using "roxygen2"
Posted on Jun 27, 2012 in Programming • Tagged with R, package, programming, tags, CRAN, roxygen2, develop
Things under legendu.net/outdated are outdated technologies that the author does not plan to update any more. Please look for better alternatives.
You have to install the R package roxygen2
first.
install.packages('roxygen2')
Roxygenize the package for compiling.
library(roxygen2)
roxygenize(path_to_package)
The following are some roxygen2 tags …
Continue reading