我正在尝试使用Highcharter R包(基于Highcharts库)创建一个wordcloud,以在一个wordcloud中显示两类情感(正面和负面)。

关键是我也想展示一个传奇。我的问题是,当我要显示图例时,单词并没有对齐。当我必须以正确的方式显示数据时,便无法显示图例。

显示我的问题的最简单的情况是以下情况:

library(tidyverse)
library(highcharter)

positive <-
  c(
    "tranquilo",
    "tranquila",
    "nova"  ,
    "burocratico" ,
    "bom"      ,
    "assertivo"   ,
    "rapido"    ,
    "transparente"
  )

negative <-
  c(
    "trabalhoso" ,
    "conduzida" ,
    "passa"  ,
    "congelada" ,
    "pessima"  ,
    "moroso"   ,
    "pouco",
    "opinar"  ,
    "passado"  ,
    "afastado"
  )

df <- list(
  tibble("term" = positive,
         "sentiment" = "positive"),
  tibble("term" = negative,
         "sentiment" = "negative")
) %>% bind_rows()

df %>%
  hchart(
    "wordcloud",
    hcaes(name = "term", group = "sentiment"),
    showInLegend = TRUE,
    colorByPoint = FALSE
  ) %>%
  hc_colors(c("#E0362C", "#189D3E"))



结果是:

javascript - 有没有办法在highcharter wordcloud中使用两个系列(或某种组)?-LMLPHP

如果我通过“ color” hcaes(name = "term", color = "sentiment")更改“ group”参数,那么我得到的是:
javascript - 有没有办法在highcharter wordcloud中使用两个系列(或某种组)?-LMLPHP

提前致谢。
Wlademir。

PS:我认为JS解决方案也可以帮助我。

最佳答案

不可能将单词分成2个单独的系列。您可以使用一个wordcloud系列,其中每个点都定义了seriesId索引。现在,您可以使用另外两个伪造的行系列(它们不能是wordcloud类型),并且可以在它们上编写自定义的legendItemClick事件逻辑。每当用户单击图例项时,该算法就会循环遍历所有单词并“隐藏”适当的单词。

您可以在此处查看此示例:https://jsfiddle.net/BlackLabel/7tq01sn5/

让我知道您的想法以及此解决方案是否适合您。重写为R时,可以使用JS(“”)函数将JavaScript函数代码转换为R。

关于javascript - 有没有办法在highcharter wordcloud中使用两个系列(或某种组)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60780978/

10-12 20:23