在seaborn中创建海盗情节(盒子和点图的组合)

时间:2017-07-28 05:38:57

标签: python matplotlib plot seaborn

在R中存在一个很好的情节,称为海盗情节。它是箱形图和点图的组合。我如何用蟒蛇在python中绘制类似的东西? 您可以在此处找到示例:http://rpubs.com/yarrr/pirateplot

1 个答案:

答案 0 :(得分:5)

这是我能想到的最接近海盗画的地方。同时使用seaborn boxplotstripplot

sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
ax = sns.boxplot(x="day", y="total_bill", data=tips)
ax = sns.stripplot(x="day", y="total_bill", data=tips, color=".25")

导致此图表。

enter image description here