绘制XTS对象的更改

时间:2018-04-26 20:07:02

标签: r plot xts zoo

我制作了以下图表,该图表是使用xts对象创建的。

enter image description here

我使用的代码只是

   plot(graphTS1$CCLL, type = "l", las = 2, ylab = "(c)\nCC for Investors", xlab = "", main = "Clustering Coefficient at the Investor Level")

我更新了我的R Studio Package和R版本,然后运行相同的代码,我得到了下面的图表。

enter image description here

显然这两者并不相同。人们可以帮我删除第二个Y轴 - 我不需要它,并删除2007-03-01 / 2010-12-01的自动标题。许多尝试都失败了。我确实使用了zoo.plot,但删除了网格线和能力以及季度标记。

我的R版本是3.4.0(2017-04-21),具有以下平台“x86_64-apple-darwin15.6.0”。提前谢谢。

1 个答案:

答案 0 :(得分:3)

您想要移除右手轴。 plot.xts(..., yaxis.right = TRUE, ...)中有一个论点。所以

library('xts')
#> Loading required package: zoo
#> 
#> Attaching package: 'zoo'
#> The following objects are masked from 'package:base':
#> 
#>     as.Date, as.Date.numeric

data(sample_matrix)
sample.xts <- as.xts(sample_matrix, descr='my new xts object')

plot(sample.xts, yaxis.right = FALSE)

做你想做的事。

我试着解决了第二个问题,删除了右上角的标签。检查plot.xts()的源代码表明标签已硬编码到主标题中。即使设置main = ''也不会删除它。您可以通过编辑plot.xts()并将其复制到新功能来解决此问题。

plotxts <- fix("plot.xts")
# In the editor that opens, replace the lines below:
###    text.exp <- c(expression(text(xlim[1], 0.5, main, font = 2, 
###        col = theme$labels, offset = 0, cex = 1.1, pos = 4)), 
###        expression(text(xlim[2], 0.5, paste(start(xdata[xsubset]), 
###            end(xdata[xsubset]), sep = " / "), col = theme$labels, 
###            adj = c(0, 0), pos = 2)))
###    cs$add(text.exp, env = cs$Env, expr = TRUE)
# with these lines:
###    text.exp <- expression(text(xlim[1], 0.5, main, font = 2,
###        col = theme$labels, offset = 0, cex = 1.1, pos = 4))

# Finally, you need to ensure your copy's environment is the xts namespace:
environment(plotxts) <- asNamespace("xts")

plotxts(sample.xts, yaxis.right = FALSE, main = "Main Title")

第二,也许 更简单的选项是使用不同的绘图功能并修改它以生成您想要的网格线等。我会开始的 与plot.zoo(),因为它已经很好地处理时间序列。

zoo::plot.zoo(sample.xts, screens = 1, xlab="", las=2, main="Main Title")
grid() # add the grid

至少在那里得到网格。我无法测试它是否会以相同的方式处理x轴标签而没有正确频率的数据。