This Shiny app allows you to interact with the results in the study Solving the “many variables” problem in MICE with principal component regression.
You can install the Shiny app by using one of the methods described below.
-
Open an R session.
-
Install
devtools
, an R package that provides a way to install other R packages directly from GitHub. Run the following R command in the console:install.packages("devtools")
-
Run the following command:
devtools::install_github("https://github.com/EdoardoCostantini/plotmipca")
-
Download the package from GitHub or Zenodo.
-
Unzip the package.
-
Open an R session, and run the following command.
install.packages( "path to the folder containing the package", repos = NULL, type = "source" )
For example, on a Windows computer, this could be
install.packages( "C:/Users/Name/Downloads/plotmipca/", repos = NULL, type = "source" )
To start the shiny apps and interact with the plots, open an R session and load the package:
library("plotmipca")
Then, run the following command in the R console:
start_app()
The app interface will explain how to interact with it.