美文网首页
wordcloud之政府工作报告

wordcloud之政府工作报告

作者: 爱学习的代代 | 来源:发表于2018-05-31 22:50 被阅读11次
    import jieba
    import  wordcloud
    
    fo = open("2018年政府工作报告全文.txt","r",encoding= "utf-8")
    t = fo.read()
    fo.close()
    ls = jieba.lcut(t)
    str = " ".join(ls)
    
    w = wordcloud.WordCloud(font_path= 'STHeiti Medium.ttc',width= 1000,height= 700,background_color= "white",max_words= 50)
    w.generate(str)
    
    w.to_file("18年政府工作报告.png")
    

    mac 上的字体 需要去/System/Library/Fonts路径下 找到汉字字体“STHeiti Medium.ttc”就不会出现乱码的情况了

    效果图如下

    18年政府工作报告.png

    相关文章

      网友评论

          本文标题:wordcloud之政府工作报告

          本文链接:https://www.haomeiwen.com/subject/ygbcsftx.html