Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 979 Bytes

Installation.md

File metadata and controls

44 lines (26 loc) · 979 Bytes
layout title nav_order
default
Installation
2

Installation guide

To install the local version of mvpaShiny please have R Studio (version ≥ 2022.02.3, Build 492) and R (version ≥ 4.1.X) installed.

Download R Studio

Download R

Code to install and run mvpaShiny

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()