https://github.com/guido-s/meta
Raw File
Tip revision: 48c2f97f389c2f06ca659970c29126d25d37338e authored by Guido Schwarzer on 02 April 2024, 14:33:20 UTC
Some bug fixes (#57)
Tip revision: 48c2f97
roxygen2.R
##
## (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()


##
## (6) Check examples
##
setwd("..")
library(numDeriv)
run_examples("meta", run_dontrun = TRUE, run_donttest = TRUE)
warnings()
back to top