pyecharts词云图设置形状
时间: 2023-06-22 17:31:23 浏览: 310
基于Python pyecharts实现多种图例代码解析
要设置词云图的形状,可以使用 `pyecharts.charts.WordCloud` 类的 `set_global_opts` 方法,其中的 `mask_image` 参数可以指定形状图片的路径。例如:
```python
from pyecharts.charts import WordCloud
from pyecharts import options as opts
words = [("Python", 100), ("Java", 80), ("C++", 60), ("JavaScript", 50), ("PHP", 40)]
wc = WordCloud()
wc.add("", words)
wc.set_global_opts(
title_opts=opts.TitleOpts(title="词云图形状示例"),
mask_image="path/to/shape.png"
)
wc.render("wordcloud_shape.html")
```
其中,`path/to/shape.png` 是形状图片的路径。注意,形状图片必须是黑色背景,白色图案的 png 图片。
阅读全文