Derjenige, der die Wörter, die häufig im Satz vorkommen, in der Größe entsprechend der Häufigkeit zeigt!
$ python3 -V
Python 3.7.3
$ mkdir wordcloud-sample
$ cd wordcloud-sample
$ python3 -m venv venv
$ source ./venv/bin/activate
$ pip install wordcloud
$ python3
Python 3.7.3 (default, Mar 6 2020, 22:34:30)
[Clang 11.0.3 (clang-1103.0.32.29)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from wordcloud import WordCloud
>>> WordCloud().generate("hello world").to_image().show()
Es war gut
Recommended Posts