#
# (1) Make R packages available
#
library("devtools")
library("roxygen2")
#
# (2) Create documentation file(s)
#
document()
#
# (3) Build R package and PDF file with help pages
#
build(args = "--compact-vignettes=gs+qpdf")
build_manual()
#
# (4) Install R package
#
install(build_vignettes = TRUE)
#
# (5) Check R package
#
check(build_args = "--compact-vignettes=gs+qpdf")
#
# (6) Check examples
#
run_examples(run_dontrun = TRUE, run_donttest = TRUE)
warnings()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.