12 爬取目標的資料分析

weixin_34162695發表於2018-12-05

Pygal教程

http://pygal.org/en/stable/documentation/index.html

WIN


730751-664667a7dcc0aeb6.png

LINUX、MacOS


730751-4e591dbc59afdeae.png
730751-0fc97250fa09d31a.png

730751-641bae379bf9a48b.png

資料庫中調取資料

jjr = session.query(表名).filter(表名.people.contains("經紀人")).count()
gr = session.query(表名).filter(表名.people.contains("個人")).count()

畫餅圖

pie_chart = pygal.Pie()
pie_chart.title = '個人-中介公司'
pie_chart.add('個人 {}'.format(gr),gr)
pie_chart.add('中介公司 {}'.format(jjr),jjr)
HTML(pie_chart.render.decode())
730751-4212c07f20391acf.png

相關文章