我尝试在python中使用seaborn进行多个kde图。 但在kde图中,归一化在轴上完成。
我想比较颜色条(相同颜色条)中的轴。 但我收到此消息
AttributeError:“ AxesSubplot”对象没有属性“ autoscale_None”
xs [i]或ys [i]是简单的浮动列表 总代码:
lim_ = 2
f, axarr = plt.subplots(2, 3, figsize=(12,8)
# , sharex=True, sharey=True
)
axl = [axarr[0,0],axarr[0,1],axarr[1,0],axarr[1,1],axarr[0,2]]
for i in range(len(arrays_)):
ax = axl[i]
fname = flist[i]
n_ptc = n_ptcs[i]
im = sns.kdeplot(np.asarray(xs[i]),np.asarray(ys[i])
,shade=True, shade_lowest=False
,cut = 3, gridsize = 100
,clip=(-lim_,lim_)
,ax = ax
)
ax = axarr[1,2]
ax.set_axis_off()
cbar = ax.figure.colorbar(im, ax=ax)
cbar.ax.set_ylabel('densty', rotation=-90, va="bottom")