Python画柱状统计图操作示例【基于matplotlib库】

作者:阅微草堂123 时间:2021-04-06 21:53:50 

本文实例讲述了Python画柱状统计图操作。分享给大家供大家参考,具体如下:

一、工具:python的matplotlib.pyplot

二、案例:


import matplotlib.pyplot as plt
import numpy as np
#添加图形属性
plt.xlabel('Age range')
plt.ylabel('Number')
plt.title('The statistics of face age dataset')
a = plt.subplot(1, 1, 1)
plt.ylim=(10, 40000)
x = [10, 20, 30, 40, 50, 60, 70]
x1 = [7, 17, 27, 37, 47, 57, 67]
x2 = [13, 23, 33, 43, 53, 63, 73]
Y1 = [41, 39, 13, 69, 39, 14, 7]
Y2 = [0, 15, 20, 105, 79, 37, 43]
Y3 = [0, 91, 404, 464, 521, 375, 553]
#这里需要注意在画图的时候加上label在配合plt.legend()函数就能直接得到图例,简单又方便!
plt.bar(x1, Y1, facecolor='red', width=3, label = 'FG-NET')
plt.bar(x, Y2, facecolor='green', width=3, label = 'MORPH')
plt.bar(x2, Y3, facecolor='blue', width=3, label = 'CACD2000')
plt.legend()
plt.show()

效果图如下:

Python画柱状统计图操作示例【基于matplotlib库】

希望本文所述对大家Python程序设计有所帮助。

来源:https://blog.csdn.net/cfyzcc/article/details/52027700

标签:Python,柱状统计图,matplotlib库
0
投稿

猜你喜欢

  • Django多数据库的实现过程详解

    2024-01-21 17:47:21
  • 基于Python实现对比Exce的工具

    2022-12-04 17:44:44
  • mysql存储过程基础之遍历多表记录后插入第三方表中详解

    2024-01-24 12:59:27
  • python之pyinstaller组件打包命令和异常解析实战

    2023-08-05 05:34:23
  • python 包实现 time 时间管理操作

    2023-03-13 21:37:52
  • 仿豆瓣分页原型(Javascript版)

    2007-11-05 14:04:00
  • python实现决策树分类算法

    2022-08-10 12:15:56
  • python 计算数组中每个数字出现多少次--“Bucket”桶的思想

    2023-06-28 19:37:55
  • Windows环境下vscode-go安装笔记(不支持32位)

    2024-04-25 15:01:40
  • Python实现冒泡排序算法的完整实例

    2021-03-04 10:47:33
  • php计算函数执行时间的方法

    2023-09-29 12:37:19
  • 修改Linux下MySQL 5.0的默认连接数

    2009-09-01 10:16:00
  • XML卷之实战锦囊(2):动态查询

    2008-09-05 17:20:00
  • python3+selenium实现qq邮箱登陆并发送邮件功能

    2023-02-04 17:54:23
  • Swin Transformer模块集成到YOLOv5目标检测算法中实现

    2021-09-10 21:09:49
  • T-SQL 查询语句的执行顺序解析

    2011-11-03 17:04:06
  • Pycharm中安装pywin32报错问题及解决

    2022-09-29 19:58:14
  • golang time包的用法详解

    2024-04-25 13:19:19
  • 举例讲解如何在Python编程中进行迭代和遍历

    2023-07-12 04:42:30
  • IE6 bug: 消失的绝对定位元素

    2009-12-04 12:11:00
  • asp之家 网络编程 m.aspxhome.com