文章插图
性别占比
文章插图
评分占比
3. 用户等级分析
def user_level_bar_analysis(file_name):df = pd.read_csv(file_name, encoding='utf-8')print(df)userLevel = df['userLevel'].value_counts().sort_index()print(userLevel)x = userLevel.indexy = userLevelfig, ax = plt.subplots()plt.bar(x, y, color='#DE85B5')# 柱状图标题plt.title('评论用户等级数量分布柱状图')plt.grid(True, axis='y', alpha=1)for i, j in zip(x, y):plt.text(i, j, '%d' % j, horizontalalignment='center', )ax.spines['right'].set_visible(False)ax.spines['top'].set_visible(False)plt.show()
文章插图
等级数量分布
该篇文章只是从评分角度去做的数据分析,其实还可以从影视类型、年度电影Top、票房等角度进一步做数据分析 。
该篇文章来自本人知乎号:梓羽Python/ target=_blank class=infotextkey>Python
文章链接:
https://zhuanlan.zhihu.com/p/611295606
【Python爬虫+数据分析之影评分析】
推荐阅读
- Linux系统是什么(python在windows上)
- sql是什么(学了python可以干嘛)
- 怎么制作数据分析表 销售月报表数据分析
- 数据分析报告范文模板__数据分析报告范文?
- 用Python免登录实现域名解析!
- python是什么意思的简单介绍
- 通向优秀数据分析师的六个阶梯
- python基础教程(scratch和python哪个编程更适合小学
- 如何在 Python 中使用生成器和迭代器?
- wxPython -高级控件之列表框ListBox