2016-03-22 90 views
3

羣的情節,我知道這個問題是不是很翔實..但我不知道他的類型情節的名字,我不能提供更多的信息.​​.如何創建與matplotlib

[編輯]我改變了標題,而現在是更多的信息.​​..

enter image description here

+0

你檢查[中matplotlib畫廊(http://matplotlib.org/gallery。 HTML)? – MSeifert

+2

您也可以查看[''seaborn.swarmplot'](https://stanford.edu/~mwaskom/software/seaborn/generated/seaborn.swarmplot.html#seaborn.swarmplot)或['seaborn.stripplot']( https://stanford.edu/~mwaskom/software/seaborn/generated/seaborn.stripplot.html#seaborn.stripplot) – tom

+0

我同意@湯姆的最後一篇文章。這看起來像帶錯誤條的羣繪圖。 – kazemakase

回答

8

你可以做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