如何在 seaborn plot 中编辑图形大小
How to edit figure size in seaborn plot
我想从 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
。
我想从 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
。