我正在尝试更改我正在构建的直方图的图形大小。 我收到了错误:
distplot() got an unexpected keyword argument 'figsize'
我试图运行的代码是:
sns.distplot(MSoft['pct_change'].dropna(), bins=100, color='magenta', figsize=(20,8))
答案 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)