Python Jupyter 中带有工具提示的交互式文字云

Interactive wordcloud with tooltips in Python Jupyter

我有一个单词和短语列表,以及每个单词和短语的分数和定义。 我想将其呈现为交互式文字云,其中文本大小由分数决定,定义显示为悬停时的工具提示。我更愿意在 Jupyter 中执行此操作。

我知道有一些库提供了生成词云 and/or 工具提示的好方法。 如何将工具提示附加到词云中的词?。 wordcloud 需要有一种方法来知道您将鼠标悬停在什么文本上并触发相应的工具提示。到目前为止,我还没有找到这样做的方法。

我对用于执行此操作的 linraries 相当不可知。 我主要希望结果相当高级并且主要是声明性的。 我看过 Vega、bqplot 和 Andreas Mueller 的 wordcloud 包。 Vega 同时具有 wordcloud 和工具提示功能,旨在很好地组合管道,但我不确定如何以正确的方式连接它们。我也更愿意编写实际的 Python 代码而不是使用 JSON 的代码,但这是一个次要问题。 Bqplot 可以很好地显示提示,但没有 wordcloud 组件。 wordcloud 包生成漂亮的 wordclouds,但我不知道如何使它们具有交互性。

我已经使用 ipyvegabrunel 完成了此操作,brunel 更简单,但我不喜欢它的 wordcloud 布局。

布鲁内尔

df = pd.DataFrame(data, columns=['word', 'size', 'text'])
%brunel cloud size(size) label(word) tooltip(text)

ipyvega

spec = {
  "$schema": "https://vega.github.io/schema/vega/v3.json",
  "name": "wordcloud",
  "width": width,
  "height": height,
  "padding": 0,
  "data" : [
      {
          'name' : 'table',
          'values' : [{'word': word, 'text': text, 'size': size}
                      for word, text size  in data]
      }
  ],
  "scales": [
    {
      "name": "color",
      "type": "ordinal",
      "range": ["#d5a928", "#652c90", "#939597"]
    }
  ],
  "marks": [
    {
      "type": "text",
      "from": {"data": "table"},
      "encode": {
        "enter": {
          "text": {"field": "word"},
          "align": {"value": "center"},
          "baseline": {"value": "alphabetic"},
          "fill": {"scale": "color", "field": "word"},
          "tooltip": {"field": "text", "type": "nominal"}
        },
        "update": {
          "fillOpacity": {"value": 1}
        },
      },
      "transform": [
        {
          "type": "wordcloud",
          "size": [width, height],
          "text": {"field": "text"},
          "font": "Helvetica Neue, Arial",
          "fontSize": {"field": "datum.size"},
        }
      ]
    }
  ],
}
Vega(spec)