做动态图表没有数据?用Python就能获取( 三 )


pass
获取到的信息如下 。
做动态图表没有数据?用Python就能获取文章插图
也来生成一个动态图表 。
import pandas as pd
import bar_chart_race as bcr
# 读取数据
df = pd.read_csv('weibo.csv', encoding='utf-8', header=None, names=['name', 'number', 'day'])
# 数据处理 , 数据透视表
df_result = pd.pivot_table(df, values='number', index=['day'], columns=['name'], fill_value=http://kandian.youth.cn/index/0)
# print(df_result[:10])
# 生成GIF
bcr.bar_chart_race(df_result[:10], filename='weibo.gif', title='大明风华演职人员热度排行')
得到结果如下 。
做动态图表没有数据?用Python就能获取文章插图
张艺兴的流量是真的顶 , 不愧是2020年十大最强流量小生之一 。
【做动态图表没有数据?用Python就能获取】相关代码链接:
(密码:lhye)
做动态图表没有数据?用Python就能获取文章插图
做动态图表没有数据?用Python就能获取文章插图