python
take off now
Boost
展开
-
matplotlib 绘制多个条形图
举例三个电影三天票房的对比情况from matplotlib import pyplot as pltfrom matplotlib import font_managermy_font = font_manager.FontProperties(fname="C:\Windows\Fonts\SimSun.ttc")a = ["猩球崛起3:终局之战","顿刻尔克","蜘蛛侠:英雄归来...原创 2020-02-01 19:56:20 · 3219 阅读 · 0 评论 -
matplotlib 绘制条形图
举例2017年电影票房from matplotlib import pyplot as pltfrom matplotlib import font_managermy_font = font_manager.FontProperties(fname="C:\Windows\Fonts\SimSun.ttc")x = ["战狼2", "速度与激情8", "功夫瑜伽", "西游伏妖篇",...原创 2020-02-01 17:54:12 · 308 阅读 · 0 评论 -
matplotlib 绘制散点图
举例:假设通过爬虫你获取到了2016年3,10月份每天白天的最高气温(分别位于列表a,b)#那么此时如何寻找出气温和随时间(天)变化的某种规律?from matplotlib import pyplot as pltfrom matplotlib import font_managermy_font = font_manager.FontProperties(fname="c:\win...原创 2020-02-01 14:00:48 · 256 阅读 · 1 评论 -
matplotlib 绘制折线图
利用matplotlib绘制折线图的流程from matplotlib import pyplot as pltfrom matplotlib import font_manager# 设置图形大小plt.figure(figsize=(20,8),dpi=80)my_font = font_manager.FontProperties(fname="c:\windows\fonts...原创 2020-01-27 11:38:39 · 229 阅读 · 0 评论