python词云安装什么库

python

python词云需要安装wordcloud库。

安装方法:

在cmd使用pip install wordcloud命令即可安装。

wordcloud库把词云当作一个WordCloud对象:wordcloud.WordCloud()代表一个文本对应的词云。

可以根据文本中词语出现的频率等参数绘制词云。

示例:

from wordcloud import WordCloud

f = open(u'D:PythonStudioWORKDemo1 est.txt','r').read()

wordcloud = WordCloud(background_color="black",width=1000, height=860, margin=2).generate(f)

#width,height,margin可以设置图片属性

# generate 可以对全部文本进行自动分词,但是他对中文支持不好,对中文的分词处理请看我的下一篇文章

#wordcloud =WordCloud(font_path = r'D:Fontssimkai.ttf').generate(f)

# 你可以通过font_path参数来设置字体集

#background_color参数为设置背景颜色,默认颜色为黑色

import matplotlib.pyplot as plt

plt.imshow(wordcloud)

plt.axis("off")

plt.show()

wordcloud.to_file('test.png')

更多Python知识请关注云海天Python教程栏目。

以上是 python词云安装什么库 的全部内容, 来源链接: utcz.com/z/527830.html

回到顶部