记录一下hackerthon遇到的坑-持更直到hackerthon结束 XD

  1. 尝试使用wordcloud画图,结果图像怎么也出不来 QQ
    Sample code如下:
from wordcloud import WordCloud
import matplotlib.pyplot as plt

wordcloud = WordCloud(
    font_path='simhei.ttf', 
    background_color="black"
)

words = fSegStat.set_index('segment').to_dict()

wordcloud.fit_words(words['count'])

plt.axis('off')

plt.imshow(wordcloud)

plt.close()

解决方法:1. 把生成的词云图片保存到本地

plt.savefig('wordcloud.png')
  1. 在close plot之前,使用show()方法
plt.show()

你可能感兴趣的:(记录一下hackerthon遇到的坑-持更直到hackerthon结束 XD)