在Seaborn boxplot中获取值

时间:2016-01-15 17:40:04

标签: boxplot seaborn

我想通过Seaborn生成的boxplot获取具体值 (即媒体,四分位数)。例如,在下面的框图中(来源:link) 有没有办法获得媒体和四分位数而不是手动估计?

import numpy as np
import seaborn as sns
sns.set(style="ticks", palette="muted", color_codes=True)

# Load the example planets dataset
planets = sns.load_dataset("planets")

# Plot the orbital period with horizontal boxes
ax = sns.boxplot(x="distance", y="method", data=planets,
             whis=np.inf, color="c")

1 个答案:

答案 0 :(得分:1)

我建议您熟悉使用pandas从数据框中提取定量信息。例如,你可以做一件简单的事情来获得你正在寻找的值(以及其他有用的值):

planets.groupby("method").distance.describe().unstack()

打印每个方法的有用值表。

或者如果您只想要中位数:

planets.groupby("method").distance.median()