When I save PCA plot, vector rows looks thinner especially when I paste in word file, is there any way to bold the vector rows to make good for reader?
here is the dummy example,
library("FactoMineR")
library("factoextra")
decathlon2.active <- decathlon2[1:23, 1:10]
res.pca <- PCA(decathlon2.active, graph = FALSE)
fviz_pca_biplot(res.pca, repel = TRUE,
col.var = "#2E9FDF", # Variables color
col.ind = "#696969" # Individuals color
)

