5
rCharts中的任何打包圖表框架是否支持製作具有不同y軸的兩個系列的時間序列圖?在這種情況下有沒有人分享一個例子?rCharts - 將第二個y軸添加到時間序列
我已經看過那裏的文檔以及圖表框架網站,但還沒有找到任何東西。
rCharts中的任何打包圖表框架是否支持製作具有不同y軸的兩個系列的時間序列圖?在這種情況下有沒有人分享一個例子?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
這將有望給這個圖表
這看起來太棒了! – Ramnath
@Ramnath謝謝你,謝謝你和Thomas Reinholdsson和其他人所做的所有工作。 – jdharrison
謝謝你。意識到Highcharts是商業軟件,並希望使用一個開放的庫,所以我一直在尋找。 – tfrojd