DOC 05 / 06Local workflow
Install, inspect, reproduce, and verify
A source-oriented workflow that keeps the active R namespace, vignette, examples, and generated website aligned.
Installation
Install the current source
Install from the package directory and restart the R session before rendering the vignette. Restarting prevents an older namespace from remaining attached after the source has changed.
R
expected <- c("y", "X", "Xcond", "pval", "delta1", "delta2",
"link", "HAC")
actual <- names(formals(boosting_glm))
setdiff(expected, actual)
# character(0)
You can also inspect the location of the active installation with find.package("BoostingMultipleTesting").
Development
Reproducible local workflow
R
# Alternative development workflow.
devtools::load_all()
# Run package-level verification.
devtools::test()
devtools::build_vignettes()
devtools::check(manual = FALSE)