gpt4 book ai didi

python - 调整 Seaborn 图的大小

转载 作者:行者123 更新时间:2023-12-03 14:25:26 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How do I change the plot size of a regplot in Seaborn?

(2 个回答)


3年前关闭。




我已经尝试了尽可能多的解决方案,但我在这方面运气不佳。我不确定是不是因为我的一些设置,但我无法 reshape 我的 Seaborn 计数图。这是我绘制图形的代码:

sns.set_style('whitegrid')
sns.set(font_scale=1.3)
sns.countplot(x=df['QuarterYear'], hue=df['Modifier'])
ax = plt.gca()

for p in ax.patches:
ax.text(p.get_x() + p.get_width()/2., p.get_height(), '%d' % int(p.get_height()),
fontsize=12, color='black', ha='center', va='bottom')

plt.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0.)

我还在同一代码块中编辑图例并标记我的计数图列。

我正在使用 Jupyter Notebook %inline。如果有人能解释我错过了什么,那就太好了。我已经尝试了很多很多这些解决方案的变体,但无济于事。

How do I change the figure size for a seaborn plot?

How to make seaborn.heatmap larger (normal size)?

How do I change the plot size of a regplot in Seaborn?

任何帮助,将不胜感激。感谢您的时间!

最佳答案

你有没有尝试过:

fig = plt.gcf()
fig.set_size_inches( 16, 10)

关于python - 调整 Seaborn 图的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51502927/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com