plot_mvar_d3: Interactive multivariate analysis plots

Usage Examples

View source: R/plot_mvar_d3.R

Usage

1
2
3
plot_mvar_d3(mvar_object, types = NULL, height = NULL, width = NULL,
  rMin = NULL, rMax = NULL, ordinal_palettes = NULL,
  continuous_palettes = NULL, prop_input = NULL)

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
library("FactoMineR")
data(wine)
wine_mfa <- ordi(wine[, -c(1:2)], "MFA", wine[, 1:2], group = c(5,3,10,9,2),
                 type = rep("s",5), graph = F)
plot_mvar_d3(wine_mfa)
plot_mvar_d3(wine_mfa, c("text", "arrow"), width = 500)
data(hobbies)
hobbies_mca <- ordi(hobbies[, 1:18], method = "MCA",
                    rows_annot = hobbies[, 19:23], graph = F)
plot_mvar_d3(hobbies_mca, width = 500, asp = 1)

krisrs1128/mvarVis documentation built on Oct. 13, 2019, 11:14 p.m.