向 dygraph 添加参数

Add parameter to dygraph

我正在尝试更改正在显示的测绘图中小数点后的数字,但出现此错误:

Error in dygraph(indoConc, { : object 'digitsAfterDecimal' not found

代码

library(dygraphs)
lungDeaths <- cbind(mdeaths, fdeaths)
dygraph(lungDeaths)

indoConc <- Indometh[Indometh$Subject == 1, c("time", "conc")]
dygraph(indoConc,{digitsAfterDecimal:1})

Dygraph link 部分:here

试试这个:

dygraph(indoConc) %>% dyOptions(digitsAfterDecimal=1)

有关更多选项,请参阅 http://finzi.psych.upenn.edu/library/dygraphs/html/dyOptions.html

另一种方法是设置 sigFigs 选项,因为 digitsAfterDecimal 不会显示尾随零,这取决于您的数据。

dygraph(indoConc) %>%
dyOptions(sigFigs=1)

此外,您似乎将 Java 脚本与 R 中用于 dygraphs 的 R 代码混淆了。这是 R 包文档的 dygraphs 的 link:https://cran.r-project.org/web/packages/dygraphs/dygraphs.pdf