I am using this factoextra package in R to do Correspondent Analysis.
When I print out the result plot, I can't find the option to hide the x and y zeroline.
I know that the theme setting is based on ggplot2. Can anyone help me to figure out how to hide those two lines?
Please find the code below.
fviz_ca_biplot(gen_show_ns.ca,
geom =c( "text", "point"),
col.col = "#FF6600",
col.row = "#336699",
MAP = "symbiplot",
labelsize = 5,
repel = TRUE,
title = " "
) +
theme(axis.line=element_blank(),
axis.text.x=element_blank(),
axis.text.y=element_blank(),
axis.ticks=element_blank(),
axis.title.x=element_blank(),
axis.title.y=element_blank(),
legend.position="none",
panel.background=element_blank(),
panel.border=element_blank(),
panel.grid.major=element_blank(),
panel.grid.minor=element_blank(),
plot.background=element_blank())})
Other reference link please see here: ggplot2 theme
Any suggestion helps! Thanks so much