如何在 R 中更改 corrplot 图例中标签的字体大小?
How can I change the font size of the labels in corrplot's lengend, in R?
我想将显示在 corrplot
调用旁边的标尺中 1 到 -1 标签的大小更改,但我不确定要传递什么参数来完成此操作。
示例调用如下所示
corrplot(data, method="pie", cex=2)
我的一些合理猜测,但没有奏效,包括:
cex=2 (errors/warnings, no effect)
cex.xlab=2 (errors/warnings, no effect)
cex.legend=2 (errors/warnings, no effect)
cex.axis=2 (sets axis labels of main plot 2x size, no effect on legend text)
根据@ulfelder的回答,控制比例的参数由cl.x给出,而不是tl.x。
cl.cex = 2 完全符合要求。
我想将显示在 corrplot
调用旁边的标尺中 1 到 -1 标签的大小更改,但我不确定要传递什么参数来完成此操作。
示例调用如下所示
corrplot(data, method="pie", cex=2)
我的一些合理猜测,但没有奏效,包括:
cex=2 (errors/warnings, no effect)
cex.xlab=2 (errors/warnings, no effect)
cex.legend=2 (errors/warnings, no effect)
cex.axis=2 (sets axis labels of main plot 2x size, no effect on legend text)
根据@ulfelder的回答,控制比例的参数由cl.x给出,而不是tl.x。
cl.cex = 2 完全符合要求。