我正在尝试更改上述图表中的一些参数。具体来说,我想做以下事情:
- 使轴标签和 ylab 更小
- 删除标题并为图表腾出空间
- 水平对齐 ylabels 而不是垂直对齐
我的代码如下所示
opar <- par(oma = c(0.1,0.2,0,0.1))
par(mar=c(0,0,0,0),plt=c(0,0.1,0,0.1),mgp=c(3,0.5,0),pin=c(1,1),fin=c(0.2,0.2),
las=1,mex=0.5,cex.main=0.6,cex.lab=0.3,cex.axis=0.3)
chart.CumReturns(returns_ts,geometric=TRUE,wealth.index=TRUE,main="",xlab="",col=hblue,cex.axis=0.8,cex.lab=0.6,las=1)
par(xpd=NA)
legend(legend=paste(paste(c("Performance indexiert"),strats[i])),cex=0.7, col=hblue,lty=1, lwd=2, bty="n",
text.col="black", ncol=1, "bottom", inset = c(0.0, -.20))
text_note=c(paste("Quelle: Bloomberg,", "letzter Datenpunkt:", last(data$date)))
mtext(text_note ,cex=0.4,col=hgrey,side = 1, line = 4, outer = FALSE,padj=0,adj=1) #ensures that the text is shown at the
grid.raster(pic,x=c(0.05),y=c(0.02),width=0.05,height=0.03)
然而,什么都没有发生,即没有任何参数被改变。我也试过
main=NULL
然后,出现时间序列的名称。
你能帮我吗?
问候安德烈亚斯