【问题标题】:Highcharter Dependency Wheel not showing up?Highcharter 依赖轮没有出现?
【发布时间】:2020-10-12 04:53:43
【问题描述】:

我正在尝试从 Highcharter 绘制 Dependency Wheel Diagram 类型,但该图没有显示出来,我能做些什么让它显示出来吗?它适用于 Sankey 类型

highchart() %>%
     hc_chart(type = 'sankey') %>%
     hc_add_series(
         data = list(
             list(from = 'Brazil', to = 'Portugal', weight = 5),
             list(from = 'Brazil', to = 'Spain', weight = 2),
             list(from = 'Poland', to = 'England', weight = 2)
             )
         )

highchart() %>%
  hc_chart(type = 'dependencywheel') %>%
  hc_add_series(
    data = list(
      list(from = 'Brazil', to = 'Portugal', weight = 5),
      list(from = 'Brazil', to = 'Spain', weight = 2),
      list(from = 'Poland', to = 'England', weight = 2)
    )
  )

(什么都没有显示)

这是我的sessionInfo() 输出

(@Edit) 尝试下载@raf18seb建议的分支参考,但无法直接打开

【问题讨论】:

    标签: r highcharts


    【解决方案1】:

    Highcharts Dependency wheel in RHow to build an Organization Chart with highcharter 的重复

    尝试从这个分支安装 highcharter 包:

    devtools::install_github("jbkunst/highcharter", ref = "720")
    

    【讨论】:

    • 我尝试下载到具体的分支,但是好像直接打不开,404: Not Found
    • 可能它已经被删除了。之前我在 Highcharter repo 上创建了一个 GitHub 票证:github.com/jbkunst/highcharter/issues/567 - 随时重新打开它
    • 好的,谢谢@raf18seb 的指点 :),已经在里面针对问题发表了评论
    【解决方案2】:

    有这个包,我可以说它是 R 的 Highcharter Sankey & Dependency Wheel Shortcut

    devtools::install_github('czxa/sankeywheel', build_vignettes = TRUE)
    library(data.table)
    library(sankeywheel)
    

    构建基于 Sankey 的情节使用:

    sankeywheel(from = sankeydf$from,
                to = sankeydf$to,
                weight = sankeydf$weight,
                type = "sankey", 
                width = "100%",
                theme = "sandsignika",
                title = "Export Distribution between Countries")
    

    构建依赖轮基于情节使用:

    sankeywheel(from = sankeydf$from,
                to = sankeydf$to,
                weight = sankeydf$weight,
                type = "dependencywheel", 
                width = "100%",
                theme = "sandsignika",
                title = "Export Distribution between Countries")
    

    【讨论】:

      猜你喜欢
      • 2020-12-03
      • 2014-08-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2022-12-19
      • 2014-08-06
      • 2019-06-24
      • 1970-01-01
      相关资源
      最近更新 更多