如何解读箱线图?
How to interpret a 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")
见https://madhuramiah.medium.com/some-interesting-visualizations-with-seaborn-python-ad207f50b844
箱线图显示了基于四分位数的分布。分布范围显示 activity 在某些数值范围内,比如销售价格。它还将销售价格中位数显示为水平黑线。箱线图让您了解什么价格的成交量。
你能帮我解释一下这个箱线图吗,我从来没有使用过它们,也没有了解过它们,也找不到关于它们的明确信息。
代码:
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")
见https://madhuramiah.medium.com/some-interesting-visualizations-with-seaborn-python-ad207f50b844
箱线图显示了基于四分位数的分布。分布范围显示 activity 在某些数值范围内,比如销售价格。它还将销售价格中位数显示为水平黑线。箱线图让您了解什么价格的成交量。