I am trying to change the colour used for the supplementary column in a correspondence analysis using fviz_ca_col()
from the package factoextra, but I do not seem to get any response when changing the colour from the default col.col.sup = "darkred"
. Reproducible example:
library(FactoMineR)
library(factoextra)
# Load example data
data("housetasks")
# Perform correspondence analysis
resca <- CA(housetasks,
col.sup = which(names(housetasks) == "Alternating"),
graph = FALSE)
# Call to plot
fviz_ca_col(resca, col.col.sup = "black")
The resulting plot has the supplementary column "Alternating"
in the default dark red colour:
There's a bug in the source code:
The input parameter should be
col.col.sup =
instead ofcolcol.sup =
One way is to call fviz: