如何在两个大熊猫子图之间建立距离?

时间:2016-11-29 14:30:46

标签: python pandas plot

我有两个子图,但是较低的suplot Min Price的标题覆盖了上部子图的xlabel。那么,我怎样才能在两个熊猫子图之间建立距离呢?

mx = df.groupby(['region']).max()['price'].rename(u'Max Price')
mn = df.groupby(['region']).min()['price'].rename(u'Min Price')
df_2 = pd.concat([mx, mn], axis=1)
df_2.index.name = ''
df_2.plot(kind='bar',subplots=True,legend=False,sharex=False,figsize=(10,5))

enter image description here

0 个答案:

没有答案