我是靠谱客的博主 欣慰哈密瓜,最近开发中收集的这篇文章主要介绍箱线图2种画法-直接给出各个四分位值或者数据集需求:代码1: 代码2,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

需求:

1. 直接给出箱线图的上下四分位数、中位值等画图

2. 给出序列,再画boxplot

代码1:

matplotlib.axes.Axes 类给出bxp 方法

"fliers":[]  outliers 是可选参数,可以通过这个参数给出离群值(异常值)

import matplotlib.pyplot as plt
import matplotlib as mpl

draw_data = [
    {
        "label":"A",
        'whislo': 24,    # Bottom whisker position
        'q1'    : 25,    # First quartile (25th percentile)
        'med'   : 26,    # Median         (50th percentile)
        'q3'    : 27,   # Third quartile (75th percentile)
        'whishi': 28
        #"fliers":[]  outliers 
    },
    {
        "label":"B",
        'whislo': 25,    # Bottom whisker position
        'q1'    : 25,    # First quartile (25th percentile)
        'med'   : 26,    # Median         (50th percentile)
        'q3'    : 27,   # Third quartile (75th percentile)
        'whishi': 28
    }
]    
fig = plt.figure(figsize=(10,6))
ax = fig.add_subplot()
ax.bxp(draw_data, showfliers=False)
ax.set_ylabel("value")
ax.set_xlabel("label")

 代码2

可以是dataframe,指定data=dataframe,也可以是以下2个列表,自动计算上下四分位值、中位数、离群值等

import seaborn as sns
xlabel = ['A','A','A','A','A','A','A','B','B','B','B']
value  = [23,12,34,20,21,43,21,28,23,29,29]
ax = sns.boxplot(x=xlabel, y=value)

 

最后

以上就是欣慰哈密瓜为你收集整理的箱线图2种画法-直接给出各个四分位值或者数据集需求:代码1: 代码2的全部内容,希望文章能够帮你解决箱线图2种画法-直接给出各个四分位值或者数据集需求:代码1: 代码2所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部