shiny_mcvis.RdShiny app for mcvis exploration
shiny_mcvis(mcvis_result, X)| mcvis_result | Output of the mcvis function |
|---|---|
| X | The original X matrix |
A shiny app allowing for interactive exploration of mcvis results
Chen Lin, Kevin Wang, Samuel Mueller
if(interactive()){
set.seed(1)
p = 10
n = 100
X = matrix(rnorm(n*p), ncol = p)
mcvis_result = mcvis(X)
shiny_mcvis(mcvis_result = mcvis_result, X = X)
}