mirror of
https://github.com/pyecharts/pyecharts.git
synced 2025-12-08 20:59:23 +00:00
25 lines
938 B
Python
25 lines
938 B
Python
#!/usr/bin/env python
|
|
# coding=utf-8
|
|
|
|
from pyecharts import WordCloud
|
|
|
|
|
|
def test_wordcloud():
|
|
|
|
# wordcloud_0
|
|
name = ['Sam S Club', 'Macys', 'Amy Schumer', 'Jurassic World', 'Charter Communications',
|
|
'Chick Fil A', 'Planet Fitness', 'Pitch Perfect', 'Express', 'Home', 'Johnny Depp',
|
|
'Lena Dunham', 'Lewis Hamilton', 'KXAN', 'Mary Ellen Mark', 'Farrah Abraham',
|
|
'Rita Ora', 'Serena Williams', 'NCAA baseball tournament', 'Point Break']
|
|
value = [10000, 6181, 4386, 4055, 2467, 2244, 1898, 1484, 1112, 965, 847, 582, 555,
|
|
550, 462, 366, 360, 282, 273, 265]
|
|
|
|
wordcloud = WordCloud(width=1300, height=620)
|
|
wordcloud.add("", name, value, word_size_range=[30, 100], rotate_step=66)
|
|
wordcloud.render()
|
|
|
|
# wordcloud_1
|
|
wordcloud = WordCloud(width=1300, height=620)
|
|
wordcloud.add("", name, value, word_size_range=[30, 100], shape='diamond')
|
|
wordcloud.render()
|