Python matplotlib绘制条形统计图 处理多个实验多组观测值


Posted in Python onApril 21, 2022

效果图展示如下:

Python matplotlib绘制条形统计图 处理多个实验多组观测值

该代码可以处理多个实验多组观测值的展示,代码如下:

import matplotlib.pyplot as plt
import numpy as np
from matplotlib.pyplot import MultipleLocator

def plot_bar(experiment_name, bar_name, bar_value, error_value=None,):
    """

    Args:
        experiment_name: x_labels
        bar_name: legend name
        bar_value: list(len(experiment_name), each element contains a np.array(),
                   which contains bar value in each group
        error_value: list(len(experiment_name), each element contains a np.array(),
                   which contains error value in each group
    Returns:

    """

    # 用于正常显示中文标签
    # plt.rcParams["font.sans-serif"]=['SimHei']

    colors = ['lightsteelblue', 'cornflowerblue', 'royalblue', 'blue', 'mediumblue', 'darkblue', 'navy', 'midnightblue',
              'lavender', ]

    assert len(bar_value[0]) <= len(colors)  # if not try to add color to 'colors'

    plt.rcParams['axes.unicode_minus'] = False
    plt.style.use('seaborn')
    font = {'weight': 'normal', 'size': 20, }
    font_title = {'weight': 'normal', 'size': 28, }
    # bar width
    width = 0.2
    # groups of data
    x_bar = np.arange(len(experiment_name))
    # create figure
    plt.figure(figsize=(10, 9))

    ax = plt.subplot(111)  # 假如设置为221,则表示创建两行两列也就是4个子画板,ax为第一个子画板

    # plot bar

    bar_groups = []
    value = []
    for i in range(len(bar_value[0])):
        for j in range(len(experiment_name)):
            value.append(bar_value[j][i])
        group = ax.bar(x_bar - (len(experiment_name)-3-i)*width, copy.deepcopy(value), width=width, color=colors[i], label=bar_name[i])
        bar_groups.append(group)
        value.clear()


    # add height to each bar
    i = j = 0
    for bars in bar_groups:
        j = 0
        for rect in bars:
            x = rect.get_x()
            height = rect.get_height()
            # ax.text(x + 0.1, 1.02 * height, str(height), fontdict=font)
            # error bar
            if error_value:
                ax.errorbar(x + width / 2, height, yerr=error_value[j][i], fmt="-", ecolor="black",
                            elinewidth=1.2, capsize=2,
                            capthick=1.2)
            j += 1
        i += 1

    # 设置刻度字体大小
    plt.xticks(fontsize=15)
    plt.yticks(fontsize=18)
    # 设置x轴的刻度
    ax.set_xticks(x_bar)
    ax.set_xticklabels(experiment_name, fontdict=font)

    # 设置y轴的刻标注
    ax.set_ylabel("Episode Cost", fontdict=font_title)
    ax.set_xlabel('Experiment', fontdict=font_title)

    # 是否显示网格
    ax.grid(False)

    # 拉伸y轴
    ax.set_ylim(0, 7.5)
    # 把轴的刻度间隔设置为1,并存在变量里
    y_major_locator = MultipleLocator(2.5)
    ax.yaxis.set_major_locator(y_major_locator)

    # 设置标题
    plt.suptitle("Cost Comparison", fontsize=30, horizontalalignment='center')

    plt.subplots_adjust(left=0.11, bottom=0.1, right=0.95, top=0.93, wspace=0.1, hspace=0.2)
    # 设置边框线宽为2.0
    ax.spines['bottom'].set_linewidth('2.0')
    # 添加图例
    ax.legend(loc='upper left', frameon=True, fontsize=19.5)
    # plt.savefig("test.png")
    plt.show()
    plt.legend()

if __name__ == "__main__":
    test_experiment_name = ["Test 1", "Test 2", "Test 3", "Test 4"]
    test_bar_name = ['A', "B", "C"]
    test_bar_value = [
        np.array([1, 2, 3]),
        np.array([4, 5, 6]),
        np.array([3, 2, 4]),
        np.array([5, 2, 2])
    ]
    test_error_value = [
        np.array([1, 1, 2]),
        np.array([0.2, 0.6, 1]),
        np.array([0, 0, 0]),
        np.array([0.5, 0.2, 0.2])
    ]
    plot_bar(test_experiment_name, test_bar_name, test_bar_value, test_error_value)

以上就是本文的全部内容,希望对大家的学习有所帮助。


Tags in this post...

Python 相关文章推荐
举例讲解Python中装饰器的用法
Apr 27 Python
Python使用正则表达式抓取网页图片的方法示例
Apr 21 Python
python shell根据ip获取主机名代码示例
Nov 25 Python
Python各类图像库的图片读写方式总结(推荐)
Feb 23 Python
Python多线程处理实例详解【单进程/多进程】
Jan 30 Python
python爬虫selenium和phantomJs使用方法解析
Aug 08 Python
python自动化工具之pywinauto实例详解
Aug 26 Python
python实现宿舍管理系统
Nov 22 Python
Python安装与卸载流程详细步骤(图解)
Feb 20 Python
关于Python Tkinter Button控件command传参问题的解决方式
Mar 04 Python
python和php学习哪个更有发展
Jun 17 Python
Python学习工具jupyter notebook安装及用法解析
Oct 23 Python
python绘制简单直方图(质量分布图)的方法
Python绘制散乱的点构成的图的方法
Python可视化动图组件ipyvizzu绘制惊艳的可视化动图
Python探索生命起源 matplotlib细胞自动机动画演示
Apr 21 #Python
使用python绘制横竖条形图
python多次执行绘制条形图
Apr 20 #Python
Python 数据可视化工具 Pyecharts 安装及应用
You might like
php编写一个简单的路由类
2011/04/13 PHP
PHP 使用header函数设置HTTP头的示例解析 表头
2013/06/17 PHP
ThinkPHP入库出现两次反斜线转义及数据库类转义的解决方法
2014/11/04 PHP
php获取访问者IP地址汇总
2015/04/24 PHP
PHP结合Mysql数据库实现留言板功能
2016/03/04 PHP
laravel实现上传图片的两种方式小结
2019/10/12 PHP
php接口隔离原则实例分析
2019/11/11 PHP
PHP解密支付宝小程序的加密数据、手机号的示例代码
2021/02/26 PHP
Javascript学习笔记4 Eval函数
2010/01/11 Javascript
Javascript读取cookie函数代码
2010/10/16 Javascript
JavaScript中的匀速运动和变速(缓冲)运动详细介绍
2012/11/11 Javascript
jQuery根据ID获取input、checkbox、radio、select的示例
2014/08/11 Javascript
js使用for循环查询数组中是否存在某个值
2014/08/12 Javascript
jquery 实现返回顶部功能
2014/11/17 Javascript
JS折半插入排序算法实例
2015/12/02 Javascript
详解JavaScript的闭包、IIFE、apply、函数与对象
2016/12/21 Javascript
Bootstrap table使用方法汇总
2017/11/17 Javascript
vue 不使用select实现下拉框功能(推荐)
2018/05/17 Javascript
vue项目中使用tinymce编辑器的步骤详解
2018/09/11 Javascript
vue项目动态设置页面title及是否缓存页面的问题
2018/11/08 Javascript
对layui初始化列表的CheckBox属性详解
2019/09/13 Javascript
浅析我对JS延迟异步脚本的思考
2020/10/12 Javascript
在Vue中使用Select选择器拼接label的操作
2020/10/22 Javascript
Vue中的nextTick作用和几个简单的使用场景
2021/01/25 Vue.js
python小技巧之批量抓取美女图片
2014/06/06 Python
Python中的defaultdict模块和namedtuple模块的简单入门指南
2015/04/01 Python
用Python解析XML的几种常见方法的介绍
2015/04/09 Python
使用beaker让Facebook的Bottle框架支持session功能
2015/04/23 Python
Python轻量级ORM框架Peewee访问sqlite数据库的方法详解
2017/07/20 Python
详解如何利用Cython为Python代码加速
2018/01/27 Python
Django框架搭建的简易图书信息网站案例
2019/05/25 Python
python判断变量是否为列表的方法
2020/09/17 Python
Links of London官方网站:英国标志性的珠宝品牌
2017/04/09 全球购物
企业法律事务工作总结
2015/08/11 职场文书
python字符串常规操作大全
2021/05/02 Python
Python实现简单的俄罗斯方块游戏
2021/09/25 Python