How To Install rootdetectR
Make sure you have the latest version of R and RStudio. Caution: Windows user will need to install RTools to be able to biuld the package.
To build the vignette (detailed manual) on you computer you will need to install the packages knitr and rmarkdown.
install.packages(c('knitr', 'rmarkdown'))
To install rootdetectR from github the package devtools is required.
# devtools needs to be available to download packages from github
if('devtools' %in% rownames(installed.packages()) == FALSE) {install.packages('devtools')}
library('devtools')
# install from github
install_github("PhilippJanitza/rootdetectR", build_vignettes = TRUE)
To view the vignette in R type:
# Advanced and Detailed Documentation
vignette('Advanced_Introduction', package = 'rootdetectR')
# Short Introduction
vignette('Short_Introduction', package = 'rootdetectR')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.