在R studio中使用dygraph时,我遇到一个非常基本的问题。
基本上,我在两个分开的图中同时绘制了18个土壤水分传感器的响应。我使用colo函数区分了传感器的深度,但是我想为每个数据系列添加一个唯一的绘制点。直到现在,我一直在努力做到这一点。任何帮助将非常感激。
这是我正在使用的代码:
dy_graph<-list(dygraphs::dygraph(VWC_1, main = "VWC_1", group="A")%>%dyOptions(colors = RColorBrewer::brewer.pal(3, "Set2"))%>%
dyHighlight(highlightSeriesOpts = list(strokeWidth = 3))%>%dyUnzoom()%>% dyAxis("y", label = "Volumetric Water Content (%)", valueRange = c(10,40)) %>% dyCrosshair(direction = "vertical")%>%
dyGroup(drawPoints = TRUE, pointSize = 5, pointShape ="triangle"),dygraphs::dygraph(VWC_2, main = "VWC_2", group="A")%>%dyOptions(colors = RColorBrewer::brewer.pal(3, "Set2"))%>%
dyHighlight(highlightSeriesOpts = list(strokeWidth = 3))%>%dyAxis("y", label = "Volumetric Water Content (%)", valueRange = c(10,40)) %>%dyUnzoom()%>%dyCrosshair(direction = "vertical"))
htmltools :: browsable(htmltools :: tagList(dy_graph))
其中VWC是包含9个传感器数据的数据库。
预先感谢您的帮助。 Corentin。