我想从seaborn创建2个regplot,这两个都是subplot。我想调整图形的大小,但sns.regplot中没有figsize,height或Aspect的属性。如何更改无花果大小?
代码
fig = plt.figure()
ax0 = fig.add_subplot(121)
ax1 = fig.add_subplot(122)
sns.regplot(x='Reputation',y='Views',data=df_users,ax=ax0)
sns.regplot(x='Reputation',y='UpVotes',data=df_users,ax=ax1)
答案 0 :(得分:1)
使用pyplot.subplots
;改变
fig = plt.figure()
ax0 = fig.add_subplot(121)
ax1 = fig.add_subplot(122)
类似
fig, (ax0, ax1) = plt.subplots(ncols=2, figsize=(10, 10))
根据需要调整figsize
。