1 Pre-required software

For the advanced user it is further recommended to install the latest version of the integrated development environment (IDE) RStudio Desktop "open source licence".

2 R Packages

Once all pre-required software is installed the R package installation workflow as described below can be started.

2.1 devtools

The R package devtools is required for downloading and installing the R package kwb.qmra from Github. Installation is done by executing the following lines of code in R or RStudio (from now on written as R(Studio)):

if (!require("devtools")) {
  install.packages("devtools", repos = "https://cloud.r-project.org")
}

2.2 kwb.qmra

Subsequently the R package kwb.qmra can be installed in R with the following code:

if(!require("devtools")) { install.packages("devtools") }
devtools::install_github(repo = "KWB-R/kwb.qmra", 
                         build_vignettes = TRUE,
                         dependencies = TRUE)


KWB-R/kwb.qmra documentation built on June 15, 2021, 11:14 p.m.