【问题标题】:How to interpret a boxenplot?如何解释箱线图?
【发布时间】:2022-01-06 11:45:35
【问题描述】:

你能帮我解释一下这个boxenplot吗,我从来没有使用过或了解过它们,我也找不到关于它们的明确信息。

代码:

import pandas as pd 
import seaborn as sns 
import matplotlib.pyplot as plt

sns.set_theme(style="whitegrid")
ax = sns.boxenplot(x=members["age"], color = "r")
plt.xlabel("Âges")
plt.title("Répartition des âges des membres")

【问题讨论】:

  • @DerekO 不,sns.boxenplot“最初命名为“字母值”图,因为它显示了大量定义为“字母值”的分位数。它类似于箱线图,用于绘制所有特征对应的分布的非参数表示实际观察。通过绘制更多分位数,它提供了有关分布形状的更多信息,特别是在尾部。有关更广泛的解释,您可以阅读this paper"

标签: python pandas seaborn


【解决方案1】:

https://madhuramiah.medium.com/some-interesting-visualizations-with-seaborn-python-ad207f50b844

boxenplot 显示基于四分位数的分布。分布范围显示特定数字范围内的活动,例如销售价格。它还将销售价格中值显示为水平黑线。箱形图可让您了解价格的成交量。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2021-01-12
    • 2013-02-17
    • 1970-01-01
    • 2016-10-27
    • 2021-10-28
    • 2016-02-04
    • 1970-01-01
    • 2019-02-23
    相关资源
    最近更新 更多