循环遍历数据框以向R中的dygraph添加注释

时间:2016-03-25 11:12:23

标签: r dygraphs

我想遍历数据框并添加注释,如

#df.dates is a dataframe with dates in it

for(i in 1:nrow(df.dates))
{
  myDyGraph %>%
  dyAnnotation(df.dates[i], text = "some text here" )
}

当我运行此图表时,图表不会更新?

1 个答案:

答案 0 :(得分:1)

创建图表变量,然后使用循环向其添加注释。所以你的例子将成为:

myDyGraph <- dygraph(df)

for(i in 1:nrow(df.dates))
{ 
  myDyGraph <- myDyGraph %>% dyAnnotation(df.dates[i], text = "some text here" )
}

myDyGraph

DyLimits here

的类似示例