我无法使用xts将一些文本添加到 R 中的时间序列数据图中。我已经制作了一个简单的问题示例。
我的text()
命令似乎什么也没做,而我可以在情节中添加一个点。我试图通过尽可能使用默认值来保持代码简单
require(quantmod)
# fetch the data and plot it using default options
getSymbols('MKS.L')
plot(MKS.L$MKS.L.Close)
# try to add text - doesn't appear
text(as.Date('2012-01-01'),y=500,"wobble", cex=4)
# add a point - this does appear
testPos <- xts(600, as.Date('2012-01-01'))
points( testPos, pch = 3, cex = 4, col = "red" )
任何帮助表示赞赏 - 我对 R 很陌生,我已经花了几个小时!