我想使用R中的highcharter库创建一个sankey图。通常,我只能查看该图的javascript代码并将其转换为R,但是对于sankey图,我遇到了一些麻烦。我想从创建这样的东西开始:http://jsfiddle.net/highcharts/z2rL672w/3/
到目前为止,这是我的尝试。我在哪里放置“键”参数时遇到麻烦。
highchart() %>%
hc_chart(type='sankey') %>%
hc_add_series_list(
list(
keys=c('from', 'to', 'weight')
),
list(
data=list(
list(
from='AT',
to='DE',
weight=10
),
list(
from='DE',
to='CH',
weight=5
),
list(
from='DE',
to='FI',
weight=5
)
)
)
)
编辑:
我现在正在尝试以下方法。还是有点麻烦
library(highcharter)
library(tidyverse)
library(jsonlite)
dat <- data.frame(from=c('AT', 'DE', 'CH', 'DE'),
to=c('DE', 'CH', 'DE', 'FI'),
weight=c(10, 5, 15, 5)) %>%
toJSON()
highchart() %>%
hc_chart(type='sankey') %>%
hc_series(dat)
最佳答案
我使用了hc_add_series
函数(没有键),它起作用了:
对于第一次尝试:
highchart() %>%
hc_chart(type = 'sankey') %>%
hc_add_series(
data = list(
list(from = 'AT', to = 'DE', weight = 10),
list(from = 'DE', to = 'CH', weight = 5),
list(from = 'DE', to = 'FI', weight = 5))
)
第二次尝试:
library(highcharter)
library(tidyverse)
library(jsonlite)
dat <- data.frame(from = c('AT', 'DE', 'CH', 'DE'),
to = c('DE', 'CH', 'DE', 'FI'),
weight = c(10, 5, 15, 5)) %>%
toJSON()
highchart() %>%
hc_chart(type = 'sankey') %>%
hc_add_series(data = dat)
我希望这可以帮助:)
编辑笔记:
我使用highcharter的开发版本0.6.0,要安装它,请使用:
devtools::install_github("jbkunst/highcharter")
关于javascript - R中的HighCharts Sankey图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50242318/