zoukankan      html  css  js  c++  java
  • WordCloud词云包的安装

    1,下载

    https://www.lfd.uci.edu/~gohlke/pythonlibs/#wordcloud

    2,安装    (window环境安装)

    找的下载文件的路径   

    安装  

    pip install wordcloud-1.3.2-cp36-cp36m-win_amd64.whl
    

      

    3,验证是否安装成功

    添加英文数据的文件,比如我的是testfile.txt

    文件内容为英文,比如

    Devouring Time, blunt thou the lion's paws,

    And make the earth devour her own sweet brood;

    Pluck the keen teeth from the fierce tiger's jaws,

    And burn the long-lived phoenix in her blood;
    。。。。。。。。

    运行python:

    from wordcloud import WordCloud
    
    f = open(u'D:PythonWorkspaceAI/testfile.txt', 'r').read()
    
    wordcloud = WordCloud(background_color="white", width=1000, height=860, margin=2).generate(f)
    import matplotlib.pyplot as plt
    
    plt.imshow(wordcloud)
    plt.axis("off")
    plt.show()
    wordcloud.to_file('test1.png')//保存图片

    结果

    哈哈哈哈,就这么解决了。。。双击66666666666666666666666666666666666666

  • 相关阅读:
    史上最强验证
    Yii2 return redirect()
    一次线上问题引发的思考
    一次前端体验优化
    RSA For PHP
    判断是否字符串是否是JSON
    过滤Xss
    Yii2 中日志的记录
    Yii2 中禁用csrf校验
    开始。
  • 原文地址:https://www.cnblogs.com/hanyu258/p/7966657.html
Copyright © 2011-2022 走看看