我想从seaborn创建2个regplots,它们都是子图。我想调整图形的大小,但 sns.regplot 中没有 Figsize、高度或方面的属性。如何改变无花果大小?
代码
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)
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
。