说明:EDA-输血数据集
2017年小型输血数据集的探索性数据分析
添加了一些新的解释简单地说,ViolinPlot是箱形图和内核密度图的组合。 它用kdplot解释了箱形图显示的5种统计信息以及更多信息
fig, ax = plt.subplots(3, 1, sharex=True)
sns.distplot(x, ax=ax[0])
ax[0].set_title('Histogram + KDE')
sns.boxplot(x, ax=ax[1])
ax
<weixin_42135773> 上传 | 大小:289kb