标签: python matplotlib plot seaborn
在R中存在一个很好的情节,称为海盗情节。它是箱形图和点图的组合。我如何用蟒蛇在python中绘制类似的东西? 您可以在此处找到示例:http://rpubs.com/yarrr/pirateplot
答案 0 :(得分:5)
这是我能想到的最接近海盗画的地方。同时使用seaborn boxplot和stripplot。
boxplot
stripplot
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")
导致此图表。