首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >问答首页 >如何在R中绘制多条线

如何在R中绘制多条线
EN

Stack Overflow用户
提问于 2019-05-27 00:34:29
回答 2查看 2.2K关注 0票数 1

我想在R中绘制多行图,如下所示:

  • 2行
  • X轴是日期
  • Y轴是日志返回。

我有三个向量的数据

代码语言:javascript
运行
AI代码解释
复制
print(class(TradeDate))
print(class(ArimaGarchCurve))
print(class(CompareCurve))
---------------------------------------------
[1] "factor"
[1] "numeric"
[1] "numeric"

我搜索并发现xyplot可能很有用,但我不知道如何使用它。我试过了。

代码语言:javascript
运行
AI代码解释
复制
pdf("Testing.pdf")
plotData <- data.frame(Date=TradeDate,
                       Arima=ArimaGarchCurve,
                       BuyHold=BuyHoldCurve)
print(xyplot(
    Arima ~ Date,
    data=plotData,
    superpose=T,
    col=c("darkred", "darkblue"),
    lwd=2,
    key=list(
        text=list(
            c("ARIMA+GARCH", "Buy & Hold")
        ),
        lines=list(
            lwd=2, col=c("darkred", "darkblue")
        )
    )
))
dev.off()

结果如下:

从这里学习

非常感谢。

代码语言:javascript
运行
AI代码解释
复制
dput(head(plotData,20))
structure(list(Date = structure(1:20, .Label = c("2001-12-03", 
"2001-12-04", "2001-12-05", "2001-12-06", "2001-12-07", "2001-12-10", 
"2001-12-11", "2001-12-12", "2001-12-13", "2001-12-14", "2001-12-17", 
"2001-12-18", "2001-12-19", "2001-12-20", "2001-12-21", "2001-12-24", 
"2001-12-25", "2001-12-26", "2001-12-27", "2001-12-28", "2001-12-31", 
"2002-01-01", "2002-01-02", "2002-01-03", "2002-01-04", "2002-01-07",
"2019-05-22", "2019-05-23"), class = "factor"), Arima = c(-0.0134052258713131, 
-0.00542641764174324, 0.0128513670753771, 0.0282761455973665, 
0.0179931884968989, 0.0281714817318116, 0.0435962602538011, 0.0462004298658309, 
0.0194592964361352, 0.0248069155406948, 0.032807001046888, 0.0381120657516546, 
0.0381120657516546, 0.030090589527961, -0.0146168717909267, -0.00630652663076437, 
-0.00630652663076437, -0.00630652663076437, 0.0100429785563596, 
0.0100429785563596), BuyHold = c(-0.0134052258713131, -0.00542641764174324, 
0.0128513670753771, 0.0282761455973665, 0.0384544388322794, 0.0281714817318116, 
0.0125050470584384, 0.0151092166704679, -0.0116319167592278, 
-0.0170082867113405, -0.0090082012051471, -0.00370313650038065, 
-0.00370313650038065, -0.0117246127240743, -0.056432074042962, 
-0.0481217288827996, -0.0481217288827996, -0.0481217288827996, 
-0.0317722236956757, -0.0317722236956757)), row.names = c(NA, 
20L), class = "data.frame")
EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2019-05-27 04:12:55

我认为这可能会有帮助:

代码语言:javascript
运行
AI代码解释
复制
library(lattice)
xyplot(
  Arima + BuyHold ~ Date,                                   # here you can add log() to the two ts
  data=plotData,
  superpose=T,
  col=c("#cc0000", "#0073e6"),                              # similar colors
  lwd=2,
  key=list(
     text  = list(c("ARIMA+GARCH log", "Buy & Hold log")),
     lines = list( lwd=2, col=c("#cc0000", "#0073e6"))      # similar colors
  ), type=c("l","g")                                        # lines and grid
)

如果您想减少x轴上的滴答数,您可以创建您的标签,并以这种方式添加它们(在本例中,您需要计算完整的时间序列参数):

代码语言:javascript
运行
AI代码解释
复制
x.tick.number <- 1
at <- seq(1, nrow(d), length.out=x.tick.number)
labels <- round(seq(2001, 2001, length.out=x.tick.number))

在情节中:

代码语言:javascript
运行
AI代码解释
复制
xyplot(
  Arima + BuyHold ~ Date,                                   # here you can add log() to the two ts
  data=d,
  superpose=T,
  col=c("#cc0000", "#0073e6"),                              
  lwd=2,
  key=list(
    text  = list(c("ARIMA+GARCH log", "Buy & Hold log")),
    lines = list( lwd=2, col=c("#cc0000", "#0073e6"))      
  ), type=c("l","g"),
  scales = list(at=at, labels=labels, rot=90))

票数 2
EN

Stack Overflow用户

发布于 2019-05-27 05:42:07

格格和ggplot都提供了解决方案。不管怎么说,正如@davide所建议的,“融化”您的数据或将其从“宽”格式转换为“长”格式是非常好的做法。将感兴趣的值放置在单个变量中,并创建并行因子以标识与每个值相关联的组。

这可以通过几种方法在基R中实现。这里显示了stack()的使用。此外,通过将日期的因子或字符表示转换为Date对象,latticeggplot2中的绘图例程将更好地为您管理轴标签。

代码语言:javascript
运行
AI代码解释
复制
df <- data.frame(Date = as.Date(plotData$Date), stack(plotData[2:3]))
(names(df)) # stack names the data 'values and the grouping factor 'ind'
levels(df$ind) <- c("ARIMA+GARCH", "Buy & Hold") # simplifies legends

下面是一个有点简单的图,很少为网格线和图例添加一些内容(键):

代码语言:javascript
运行
AI代码解释
复制
xyplot(values ~ Date, data = df, groups = ind, type = c("g", "l"), auto.key = TRUE)

这些绘图可以通过lattice通过panel函数和auto.key中的元素进行定制。虽然在函数的顶层使用col = c("darkred", "darkblue")会使绘图中的线条着色,但通过可选的par.settings参数传递它将使其可用于图例函数。

代码语言:javascript
运行
AI代码解释
复制
xyplot(values ~ Date, data = df, groups = ind,
  panel = function(...) {
    panel.grid(h = -1, v = -1)
    panel.refline(h = 0, lwd = 3)
    panel.xyplot(..., type = "l")},
  auto.key = list(points = FALSE, lines = TRUE, columns = 2),
  par.settings = list(superpose.line = list(col = c("darkred", "darkblue"))))

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/56322423

复制
相关文章

相似问题

领券
社区富文本编辑器全新改版!诚邀体验~
全新交互,全新视觉,新增快捷键、悬浮工具栏、高亮块等功能并同时优化现有功能,全面提升创作效率和体验
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
查看详情【社区公告】 技术创作特训营有奖征文