This repository contains work on an R package for performing dynamic statistical comparisons (DSCs) in R. For a brief introduction to DSCs, see here.
In R, install the latest version of smashr (with the vignettes enabled) using devtools:
install.packages("devtools")
library(devtools)
install_github("stephens999/dscr",build_vignettes = TRUE)
This will build the smashr package with the vignettes. Note that it may take a few minutes to create the vignettes.
Once the vignettes are generated, you should be able to view them in R (or RStudio) by running
browseVignettes("dscr")
Note that running the code in the vignettes requires the
psych and ashr packages. Typically these are
installed by the install_github
command above, but if not you may
need to install these packages separately.