美文网首页
python构建词云

python构建词云

作者: 钓小鱼的猫 | 来源:发表于2020-08-21 13:56 被阅读0次

    使用的库import stylecloud

    import stylecloud
    
    #stopwords = open('data/stopwords.txt', encoding='utf-8').read().split('\n')
    
    stylecloud.gen_stylecloud(file_path='/Users/yua/Documents/_test/case/constitution.txt',
                              #font_path="Hiragino Sans GB.ttc",
                              font_path='SourceHanSansCN-Regular.otf',
                              icon_name='fas fa-user-graduate',
                              output_name='1.png',
                              size=1500
                             # custom_stopwords=stopwords
     )
    

    在实际操作过程中会遇到如下问题:

    OSError: cannot open resource
    

    究其原因,是因为本地不存在对应的字体库,随更新:

    font_path="Hiragino Sans GB.ttc",
    

    参考链接:
    https://blog.csdn.net/weixin_38008864/article/details/107194187
    https://fontawesome.com/license/free

    相关文章

      网友评论

          本文标题:python构建词云

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