R 增加性能分析图表中图例的大小。性能摘要

R 增加性能分析图表中图例的大小。性能摘要,r,R,我一直在尝试增加图表中图例的大小。性能摘要情节 这是我的密码: charts.PerformanceSummary(data,geometric= FALSE,cex.axis=1.5, main="Desk Performance", legend(cex=1.5)) # I tried this but legend(cex=1.5) does not work 你知道如何增加图例的大小以便我可以阅读吗 谢谢大家! 图例(cex=1.5)的语法不正确。改用cex.legend=1.5,如

我一直在尝试增加图表中图例的大小。性能摘要情节

这是我的密码:

charts.PerformanceSummary(data,geometric= FALSE,cex.axis=1.5, main="Desk Performance", legend(cex=1.5))  # I tried this but legend(cex=1.5) does not work
你知道如何增加图例的大小以便我可以阅读吗

谢谢大家!

图例(cex=1.5)
的语法不正确。改用
cex.legend=1.5
,如下所示:

charts.PerformanceSummary(data,geometric= FALSE,cex.axis=1.5, main="Desk Performance", cex.legend=1.5)