gpt4 book ai didi

javascript - R/Shiny 中的纯 Dygraphs JavaScript 选项

转载 作者:行者123 更新时间:2023-11-30 09:52:04 25 4
gpt4 key购买 nike

有没有办法在 R 中使用纯 Dygraphs JavaScript 选项(更具体地说是 Shiny)?
http://dygraphs.com/options.html

我认为 htmlwidgets 包中的 JS() 函数可以使用,但我不确定。

例如,我想使用 highlightSeriesOpts(参见第一个链接)突出显示 dygraphs 图中的各个系列,以便仅显示图例中的选定系列(而不是所有系列默认为同一时间)。以下链接中下方的 2 个图准确显示了要实现的目标:
http://dygraphs.com/gallery/#g/highlighted-series

已经给出了 CSS 解决方案(即 .dygraph-legend {display: none;}.dygraph-legend .highlight {display: inline;} ) ,但这在 R/Shiny 中不起作用。

无论如何,这是我的概念脚本。它不起作用,但非常感谢所有建议。

ui <- fluidPage(

sidebarLayout(
sidebarPanel(),
mainPanel(dygraphOutput("plot"))

)

)

server <- function(input, output) {

set.seed(123)
data <- matrix(rnorm(12), ncol = 2)
data <- ts(data)

# Workaround for what might be a bug
# Reference: http://stackoverflow.com/questions/28305610/use-dygraph-for-r-to-plot-xts-time-series-by-year-only
data <- cbind(as.xts(data[,1]), as.xts(data[,2]))

colnames(data) <- c("Series 1", "Series 2")
#print(data) # Uncomment to view data frame

# The logic of the following is that plain Dygraphs JavaScript
# code can be used as plotting material
output$plot <- JS("
new Dygraph(plot,
data,
{ highlightSeriesOpts: {strokeWidth: 3} });

g.updateOptions({ highlightSeriesOpts: {strokeWidth: 3} });

")

}

shinyApp(ui = ui, server = server)

最佳答案

highlightSeriesOpts 使突出显示的系列笔画更粗并且不影响图例。您仍然需要适当的 CSS 才能仅显示图例中最接近的系列。要按照您的建议设置 highlightSeriesOptshttp://rstudio.github.io/dygraphs/gallery-series-highlighting.html 处有一个清晰的示例.

lungDeaths <- cbind(ldeaths, mdeaths, fdeaths)

dygraph(lungDeaths, main = "Deaths from Lung Disease (UK)") %>%
dyHighlight(highlightSeriesOpts = list(strokeWidth = 3))

要在 Shiny 中获得更完整的答案,我们可以这样做。

library(shiny)
library(dygraphs)

lungDeaths <- cbind(ldeaths, mdeaths, fdeaths)

ui <- dygraph(lungDeaths, main = "Deaths from Lung Disease (UK)") %>%
dyHighlight(highlightSeriesOpts = list(strokeWidth = 3)) %>%
dyCSS(textConnection("
.dygraph-legend > span { display: none; }
.dygraph-legend > span.highlight { display: inline; }
"))

server <- function(input,output,session){

}

shinyApp(ui,server)

关于javascript - R/Shiny 中的纯 Dygraphs JavaScript 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35943583/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com