An opinionated package for enhancing your R package documentation.
When writing R packages, high quality documentation can make for a great experience for your users.
You can use docreview to check that your R package documentation passes a number of checks:
# Install the development version from GitHub:
# install.packages("devtools")
devtools::install_github("thisisnic/docreview")
library(docreview)
pkg_path <- system.file("testpkg", package = "docreview")
package_review(path = pkg_path)
See the vignette for more detailed usage guides.