Quickstart
TIRTLtools.RmdInstallation
Option 1: Install directly from GitHub
if (!requireNamespace("remotes", quietly = TRUE)) {
install.packages("remotes") ## Run if you need to install the 'remotes' package
}
remotes::install_github("NicholasClark/TIRTLtools")
library(TIRTLtools)Option 2: (advanced) Download to local folder and load using ‘pkgload’
Run the following line from the terminal to download the git repository.
git clone https://github.com/NicholasClark/TIRTLtools.git
Load the package from your local folder in R
# install.packages("pkgload") ## Run if you need to install the 'pkgload' package
pkgload::load_all("./TIRTLtools") ### location of cloned repo on your machine