我正在用corrplot绘制相关图。我还要绘制相关系数:

require(corrplot)
test <- matrix(data = rnorm(400), nrow=20, ncol=20)
corrplot(cor(test), method = "color", addCoef.col="grey", order = "AOE")

但是它们在情节中太大了:

有什么方法可以使系数的字体更小?我一直在看?corrplot,但是只有参数可以更改图例和轴字体大小(cl.cextl.cex)。 pch.cex也不起作用。

最佳答案

使用的选项是number.cex=
corrplot(cor(test), method = "color", addCoef.col="grey", order = "AOE",number.cex=0.75)

要使其动态,请尝试number.cex= 7/ncol(Df),其中Df是为其运行关联的数据帧。

关于r - 如何更改Corrplot中相关系数的字体大小?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26574054/

10-12 19:51