我正在使用Performance Analytics软件包并且它可以工作,但我的X和Y的字体大小非常小。你知道如何改变轴的字体大小吗?
到目前为止,我只能使用cex.main和cex.lab更改标题和轴标签的大小,但是当我尝试更改实际轴的大小时,cex.axis似乎不起作用。
这是我的代码:
par(cex.main=3,cex.lab=3,cex.axis=3) ##cex.axis does not not seem to work
charts.PerformanceSummary(data,main=paste("Performance of ",input$Desk ,sep=""),geometric= FALSE)
谢谢。 马克
答案 0 :(得分:0)
您应该在cex.axis=3
函数调用中传递charts.PerformanceSummay
。
data(edhec)
charts.PerformanceSummary(edhec[,c(1,13)])
charts.PerformanceSummary(edhec[,c(1,13)], cex.axis = 3)