R - change size of axis labels for corrplot

前端 未结 3 1326
粉色の甜心
粉色の甜心 2021-02-05 22:24

I am using the following with corrplot:

require(\"corrplot\") ## needs the corrplot package
corrplot(cor(lpp_axis1, lpp_axis2), method=c(\"number\")         


        
3条回答
  •  庸人自扰
    2021-02-05 22:44

    You could try changing the point size of text with par. I think the default size is 12.
    Adding a line like par( ps=14) before corrplot should make the text larger.

提交回复
热议问题