layout | title | nav_order |
---|---|---|
default |
Installation |
2 |
To install the local version of mvpaShiny please have R Studio (version ≥ 2022.02.3, Build 492) and R (version ≥ 4.1.X) installed.
Please copy-paste the code below in the R Studio console and execute it.
To install the package the devtools package is required which the following code will try to install automatically if it has not been installed yet.
if (!require("devtools", quietly = TRUE)) {
install.packages("devtools")
} else {
print("Devtools has been already installed.")
}
devtools::install_github("liningtonlab/mvpa")
devtools::install_github("liningtonlab/mvpaShiny")
Start mvpaShiny!
library(mvpaShiny)
mvpaApp()