繁体   English   中英

遍历数据框以在R中的笔画上添加注释

[英]Loop through dataframe to add annotations to dygraph in R

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

#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" )
}

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

创建一个图表变量,然后通过循环向其添加注释。 因此,您的示例将变为:

myDyGraph <- dygraph(df)

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

myDyGraph

DyLimits的类似示例在这里

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM