gpt4 book ai didi

r - 使用 dygraphs 难以在 R 中重现堆叠条形图

转载 作者:行者123 更新时间:2023-12-04 18:57:19 24 4
gpt4 key购买 nike

我一直在使用 dygraphs R 包来生成一些精彩的时间序列图,但是很难重现位于此处的示例:
http://rstudio.github.io/dygraphs/gallery-custom-plotters.html

我对创建堆积条形图特别感兴趣:
Desired stacked bar chart

我的数据是一个 xts/zoo 对象,并使用标准 dygraph 很好地绘图功能:
sample plot

但是,我不确定 dyStackedBarGroup 在哪里功能来自。看来必须创建这些函数,并指向 .js 文件中的特定绘图仪。

我可以看到第一个例子,如何 dyBarChart已创建,但在我的本地 dygraph 安装中没有 stackedbarchar.js/stackedbargroup.js(但是我可以在 https://github.com/rstudio/dygraphs/tree/master/inst/plotters 中看到该文件)。

我试图从 github 页面获取所有函数和 .js 文件,在本地加载 dygraphs 包时,这些文件似乎不可用,但我仍然没有成功。

我做错了什么吗?

最佳答案

套装stackedGraph参数在 dyOptionsTRUE . dyOptions(stackedGraph = TRUE) .

条形图的 javascript 文件可以在 dygraphs 的“examples/plotters/barchart.js”中找到。包目录。

数据:

lungDeaths <- cbind(mdeaths, ldeaths)

代码:
# create dygraph plotter
library('dygraphs')
dyBarChart <- function(dygraph) {
dyPlotter(dygraph = dygraph,
name = "BarChart",
path = system.file("examples/plotters/barchart.js", package = "dygraphs"))
}

dygraph(lungDeaths) %>% # create dygraph of lungDeaths
dyBarChart() %>% # create bar chart with the passed dygraph
dyOptions(stackedGraph = TRUE) # make it as stacked bar chart

enter image description here

关于r - 使用 dygraphs 难以在 R 中重现堆叠条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49440484/

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