词云库 stylecloud

参考:
安装:
【词云库 stylecloud】pip即可安装
直接调用 txt 文本生成词云:
from stylecloud import gen_stylecloudgen_stylecloud(file_path='Trump.txt',output_name'1.png')
词云形状:

词云库 stylecloud

文章插图
蒙版链接-#/%E5%9B%BE%E6%A0%87
可以定期更新 , 见参考链接
调用狗的蒙版:
stylecloud.gen_stylecloud(text=' '.join(text1), collocations=False,font_path=r'?C:\Windows\Fonts\msyh.ttc',icon_name='fas fa-dog',size=400,output_name='词云.png')
参数 , 有 fas , far , fab , 三种前缀 , 要哪一种图就用哪一种 , 比如要调用狗 , 还需 fa 前缀 , 其他也一样
词云库 stylecloud

文章插图
配色:
from stylecloud import gen_stylecloudword = jieba.lcut(title_word)gen_stylecloud(text=' '.join(word), collocations=False,palette='tableau.BlueRed_6',font_path=r'?C:\Windows\Fonts\msyh.ttc',icon_name='fas fa-building',size=400,output_name='../标题词云.png')
参数 , 取值-#- , 参考链接
中显示
不需要分词的
from IPython.display import Image import stylecloudstylecloud.gen_stylecloud(text=name,collocations=False,font_path=r'?C:\Windows\Fonts\msyh.ttc',icon_name='fas fa-tv',size=768,output_name='节目名称词云图.png')Image(filename='节目名称词云图.png')