如何使用matplotlib创建swarm图

时间:2016-03-22 11:40:10

标签: matplotlib

我知道这个问题的信息量不大......但由于我不知道他的情节类型的名称,我不能提供更多信息。

[编辑]我更改了标题,现在它提供了更丰富的信息......

enter image description here

1 个答案:

答案 0 :(得分:11)

您可以使用seaborn.swarmplot执行类似操作。我还使用seaborn.boxplot(关闭胡须和大写)来绘制平均值和范围:

import matplotlib.pyplot as plt
import seaborn as sns
sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
ax = sns.swarmplot(x="day", y="total_bill", data=tips)
ax = sns.boxplot(x="day", y="total_bill", data=tips,
        showcaps=False,boxprops={'facecolor':'None'},
        showfliers=False,whiskerprops={'linewidth':0})

plt.show()

enter image description here