gpt4 book ai didi

r - 使用 dygraphs 包在 R 中创建条形图

转载 作者:行者123 更新时间:2023-12-04 10:54:47 25 4
gpt4 key购买 nike

有没有办法像在 dygraphs 网站本身 http://dygraphs.com/tests/plotters.html 上那样在 R 中使用带有 dygraphs 的不同类型的图?使用 R 时有没有办法访问这些?从 R 网站的 dygraphs 中获取的一个简单示例如下所示:

library(dygraphs)
library(dplyr)
lungDeaths <- cbind(mdeaths, fdeaths)
dygraph(lungDeaths)
# How to choose a different type of plot?

/编辑。所以我发现你可以使用带有 dygraphs 的自定义绘图仪,如下所示: http://blog.dygraphs.com/2012/08/introducing-custom-plotters.html .有没有办法在R中得到它?

最佳答案

我在 dyOptions 中使用绘图仪来创建条形图。我刚刚从 dygraphs 博客中复制了 barChartPlotter 函数。 http://blog.dygraphs.com/2012/08/introducing-custom-plotters.html

library(xts)
library(dygraphs)
library(lubridate)

graph_data <- xts(x = c(1,2,3,4), order.by = lubridate::ymd(c("2015-01-01", "2015-02-01", "2015-03-01", "2015-04-01")))
names(graph_data) <- "value"

dygraph(graph_data) %>%
dyOptions(useDataTimezone = TRUE, plotter =
"function barChartPlotter(e) {
var ctx = e.drawingContext;
var points = e.points;
var y_bottom = e.dygraph.toDomYCoord(0); // see http://dygraphs.com/jsdoc/symbols/Dygraph.html#toDomYCoord

// This should really be based on the minimum gap
var bar_width = 2/3 * (points[1].canvasx - points[0].canvasx);
ctx.fillStyle = e.color;

// Do the actual plotting.
for (var i = 0; i < points.length; i++) {
var p = points[i];
var center_x = p.canvasx; // center of the bar

ctx.fillRect(center_x - bar_width / 2, p.canvasy,
bar_width, y_bottom - p.canvasy);
ctx.strokeRect(center_x - bar_width / 2, p.canvasy,
bar_width, y_bottom - p.canvasy);
}
}")

关于r - 使用 dygraphs 包在 R 中创建条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29698255/

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