美文网首页
2018-12-16 词云

2018-12-16 词云

作者: 子小亦大 | 来源:发表于2018-12-16 16:46 被阅读0次

    常规矩形词云

    #GovRptWordCloudv1.py

    importjieba

    importwordcloud

    f =open("新时代中国特色社会主义.txt", "r", encoding="utf-8")

    t =f.read()

    f.close()

    ls =jieba.lcut(t)

    txt =" ".join(ls)

    w =wordcloud.WordCloud( \

        width =1000, height =700,\

        background_color ="white",

        font_path ="msyh.ttc"

        )

    w.generate(txt)

    w.to_file("grwordcloud.png")

    不规则图形词云

    #GovRptWordCloudv2.py

    importjieba

    importwordcloud

    fromscipy.misc importimread

    mask =imread("chinamap.jpg")

    excludes ={ }

    f =open("新时代中国特色社会主义.txt", "r", encoding="utf-8")

    t =f.read()

    f.close()

    ls =jieba.lcut(t)

    txt =" ".join(ls)

    w =wordcloud.WordCloud(\

        width =1000, height =700,\

        background_color ="white",

        font_path ="msyh.ttc", mask =mask

        )

    w.generate(txt)

    w.to_file("grwordcloudm.png")

    相关文章

      网友评论

          本文标题:2018-12-16 词云

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