How to remove axis labels in FactoMineR of R? -
how remove axis label, axis ticks , title in factominer package of r? following code gives error saying "formal argument "xlab" matched multiple actual arguments":
require(factominer) plot(res.pca,choix="var", shadow=true, select = c("tree", "fish"), yaxt="n", xaxt="n", xlab="", ylab="", col.var = "red", cex=2, lwd=2, title=na)
if rid of xlab="", ylab="", things work fine except fact have x , y axis labels. don't want those.
plot(..., col.lab="white")
and then
mtext('my_x_label', side=1, line=3) mtext('my_y_label', side=2, line=3)
if wish.
Comments
Post a Comment