在功能图表.Bar 的帮助页面上,动物园对象可以作为参数。 但是,在RStudio的控制台上,出现了错误。
> chart.Bar(lab4Returns.z, legend.loc="bottom", main="")
Error in legend(x = lc$x, y = lc$y, legend = legend.names, xjust = lc$xjust, :
unused argument (lend = "butt")
In addition: Warning message:
In plot.xts(x = y, y = NULL, ..., col = colorset, type = type, lty = lty, :
only the univariate series will be plotted
我已经检查了那个动物园物体的尺寸。它表明:
> dim(lab4Returns.z)
[1] 143 3
以下是该动物园对象的前六个元素:
> head(lab4Returns.z)
VBLTX FMAGX SBUX
Feb 1998 -0.004881 0.073069 0.078858
Mar 1998 0.001037 0.049066 0.135702
Apr 1998 0.006181 0.011513 0.060219
May 1998 0.018136 -0.045728 -0.002601
Jun 1998 0.020749 0.067677 0.107312
Jul 1998 -0.005911 -0.007508 -0.243824
我尝试了另一个功能 chart.TimeSeries 。它可以将Zoo对象作为参数,而不会出现错误。 chart.Bar 和 chart.TimeSeries 是 PerformanceAnalytics软件包中的相似功能。为什么事情只对 chart.Bar 不起作用?
> chart.TimeSeries(lab4Returns.z, legend.loc="bottom", main="")
如何制作chart.Bar以Zoo对象作为参数? 非常感谢!