gpt4 book ai didi

python - 如何在python中为绘图添加填充?

转载 作者:行者123 更新时间:2023-12-04 12:08:25 24 4
gpt4 key购买 nike

我试图在我的情节的左侧和右侧添加填充。
但是当我改变 xlim 和 ylim 时;图像变小。

我究竟做错了什么?

import matplotlib.pyplot as plt
plt.rcParams['text.usetex'] = False
from matplotlib.font_manager import FontProperties
import seaborn as sns
%matplotlib inline



df1=df['Total Acc'].round(4)*100
labels = ['AWA','Rem', 'S1', 'S2', 'SWS', 'SX', 'ALL']


rows = [df1.loc[label] for label in labels]
for row in rows:
row.plot(figsize=(10, 5), marker='o')


# http://matplotlib.org/api/legend_api.html ---set_bbox_to_anchor(bbox, transform=None)
myLegend=plt.legend(labels, bbox_to_anchor=(0., 1.15, 1., .102), prop ={'size':10}, loc=10, ncol=7, #left, bottom, width, height
title=r'LEARNING CURVE - Fp1_RF(20)')
myLegend.get_title().set_fontsize('18')


plt.ylim(97.5, 98.5)
plt.xlim(0, 45)

plt.xlabel('# of samples per subject')
plt.ylabel('Accuracy')

enter image description here

最佳答案

如果您的 matplotlib 图形被修剪,您可以使用 Tight Layout .提供详情here

在您的代码中,尝试添加

plt.tight_layout()

您可以尝试的另一个选项是使用 subplots_adjust() .基本上,它可以让您控制左侧、右侧、底部和顶部的默认间距以及多行和多列之间的水平和垂直间距。 Sample Example here
plt.subplots_adjust(left=0.5, right=0.5)

关于python - 如何在python中为绘图添加填充?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42281851/

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