I'm currently making pca with factomineR
and factoextra
packages.
An example of my code with data iris :
library(FactoMineR)
library(factoextra)
data(iris)
res.pca<-PCA(iris , scale.unit=TRUE, ncp=2, quali.sup=c(5), graph = FALSE)
fviz_pca_biplot(res.pca, label="var", habillage=5,
addEllipses=TRUE) + theme_minimal()
I want to change the width of the lines surrounding the ellipses and same for the width of the variables. I tried several methods but I couldn't figure how to do what I want.
Any ideas?
I would create copies of the functions needed and change the code inside them. Specifically, to increase the width of ellipses you can add
size=..
in the call toggplot2::stat_ellipse
command.Then use the new functions.