【发布时间】:2020-08-20 07:05:55
【问题描述】:
绘制 xts 应该很容易,但我似乎无法让 xlab 和 ylab 工作..
ylab="Price"
xlab="Date"
plot(x = basket[, 1], lty="dotted", xlab = xlab, ylab = ylab, col = "mediumblue", lwd = 2)
title("Cumulative")
这将绘制图形,但在 x 轴和 y 轴上没有任何标签。
必须有一个简单的解决方案。除了那个问题,情节看起来应该是这样。我尝试过 xts.plot、zoo.plot、xyplot,但似乎都没有成功。
数据样本
structure(c(1, 1.01463414634146, 0.926829268292683, 0.970731707317073,
0.953658536585366, 1, 0.998263888888889, 1.01159722222222, 1.05076388888889,
1.05034722222222, 1, 1.00178890876565, 0.985688729874776, 1.04293381037567,
1.04651162790698, 1, 0.976675478152698, 0.990359197636448, 1.06515316436013,
1.04571606282071), class = c("xts", "zoo"), index = structure(c(946944000,
947030400, 947116800, 947203200, 947462400), tzone = "UTC", tclass = "Date"), .Dim = 5:4, .Dimnames = list(
NULL, c("new.close", "new.close.1", "new.close.2", "new.close.3"
)))
【问题讨论】: