Description
Integrate R with 'RDocumentation'.
Description
Wraps around the default help functionality in R. Instead of plain documentation files, documentation will show up as it does on <https://www.rdocumentation.org>, a platform that shows R documentation from 'CRAN', 'GitHub' and 'Bioconductor', together with informative stats to assess the package quality.
README.md
Enhance the search/help functionality in R with RDocumentation.org, and discover what R packages are most popular.
Installation
To install the latest stable version from CRAN:
install.packages("RDocumentation")
You can also use devtools
to install the latest development version:
devtools::install_github("datacamp/RDocumentation")
library(RDocumentation)
If the package is loaded, it overrides the basic help functions from the utils package:
help()
: for help about specific topic or packageshelp.search()
: for help about fuzzy topics or packages?
: shortcut for the two help functions, one question mark callshelp
, two callshelp.search
.
Features:
Search through all CRAN, Bioconductor, Github packages and their archives thanks to RDocumentation.
Browse beautifully formatted and designed help pages.
Post reviews and help package authors to improve their documentation.