gpt4 book ai didi

rCharts - 将第二个 y 轴添加到时间序列

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

rCharts 中的任何打包图表框架是否支持制作具有不同 y 轴的两个系列的时间序列图?在这种情况下,有人可以分享一个例子吗?

我查看了那里的文档以及图表框架网站上的文档,但没有找到任何内容。

最佳答案

这可以在 highcharts 和最有可能的其他人中完成。我已经完成了出色的工作 here .一个简化的版本是:

library(rCharts)
h <- Highcharts$new()
h$xAxis(categories = c('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'))
h$yAxis(list(list(title = list(text = 'Rainfall'))
, list(title = list(text = 'Temperature'), opposite = TRUE)
, list(title = list(text = 'Sea Pressure'), opposite = TRUE))
)
h$series(name = 'Rainfall', type = 'column', color = '#4572A7',
data = c(49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4))
h$series(name = 'Temperature', type = 'spline', color = '#89A54E',
data = c(7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6),
yAxis = 1)

h$series(name = 'Sea-Level Pressure', type = 'spline', color = '#AA4643',
data = c(1016, 1016, 1015.9, 1015.5, 1012.3, 1009.5, 1009.6, 1010.2, 1013.1, 1016.9, 1018.2, 1016.7),
yAxis = 2)
h

这将有希望给出这张图表

enter image description here

关于rCharts - 将第二个 y 轴添加到时间序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18535665/

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