e_mapa_3D {discoveR} | R Documentation |
PCA plot of individuals colored by clusters
Description
PCA plot of individuals colored by clusters
Usage
e_mapa_3D(pca.model, clusters, colores = NULL, ejes = c(1, 2, 3), etq = F)
Arguments
pca.model |
an object of class PCA [FactoMineR]. |
clusters |
a vector specifying the cluster of each individual. |
colores |
a vector of color for each cluster. |
ejes |
a numeric vector of length 3 specifying the dimensions to be plotted. |
etq |
a boolean, whether to add label to graph or not. |
Value
echarts4r plot
Author(s)
Diego Jimenez <diego.jimenez@promidat.com>
Examples
p <- FactoMineR::PCA(iris[, -5], graph = FALSE)
clusters <- factor(kmeans(iris[, -5], 3)$cluster)
e_mapa_3D(p, clusters, c("steelblue", "pink", "forestgreen"), etq = FALSE)
[Package discoveR version 3.1.2 Index]