【发布时间】:2018-09-09 09:16:16
【问题描述】:
我正在尝试更改我正在构建的直方图的图形大小。 我收到了错误:
distplot() got an unexpected keyword argument 'figsize'
我要运行的代码是这样的:
sns.distplot(MSoft['pct_change'].dropna(), bins=100, color='magenta', figsize=(20,8))
【问题讨论】:
标签: python pandas matplotlib seaborn