我想遍历数据框并添加注释,如
#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" )
}
当我运行此图表时,图表不会更新?
答案 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
的类似示例