How to change font size of the correlation coefficient in corrplot?
问题 I am plotting correlation plot with corrplot. I want to plot also the correlation coefficients: require(corrplot) test <- matrix(data = rnorm(400), nrow=20, ncol=20) corrplot(cor(test), method = "color", addCoef.col="grey", order = "AOE") But they are too big in the plot: Is there any way to make the font of the coefficent smaller? I've been looking at ?corrplot but there are only parameters to change the legend and axis font sizes ( cl.cex and tl.cex ). pch.cex doesn't work either. 回答1: It