distplot()得到了一个意想不到的关键字参数' figsize'

时间:2018-03-30 10:16:58

标签: python pandas matplotlib seaborn

我正在尝试更改我正在构建的直方图的图形大小。 我收到了错误:

distplot() got an unexpected keyword argument 'figsize'

我试图运行的代码是:

sns.distplot(MSoft['pct_change'].dropna(), bins=100, color='magenta', figsize=(20,8))

1 个答案:

答案 0 :(得分:0)

您需要更改绘制绘图的图形大小 -

sns.set_style('ticks')
fig, ax = plt.subplots()
fig.set_size_inches(10, 6)
sns.distplot(MSoft['pct_change'].dropna(), bins=100, color='magenta', ax=ax)