如何在seaborn图中编辑图形大小

问题描述 投票:0回答:1

我想从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)
python matplotlib plot seaborn figure
1个回答
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

© www.soinside.com 2019 - 2024. All rights reserved.