向matplotlib图形添加标签

2024-05-19 15:40:20 发布

您现在位置:Python中文网/ 问答频道 /正文

具有以下代码:

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.dates as mdates

days, impressions = np.loadtxt('results_history.csv', unpack=True, delimiter=',',usecols=(0,1) ,
        converters={ 0: mdates.strpdate2num('%d-%m-%y')})

plt.plot_date(x=days, y=impressions, fmt="r-")
plt.title("Load Testing Results")


#params = {'legend.labelsize': 500,
    #'legend.handletextpad': 1,
    #'legend.handlelength': 2,
    #'legend.loc': 'upper left',
    #'labelspacing':0.25,
    #'legend.linewidth': 50}
#plt.rcParams.update(params)

plt.legend("response times")

plt.ylabel("Date")
plt.grid(True)
plt.show()

图形已生成,但我无法确定如何添加一些xy标签。生成的图形:enter image description here

也尝试增加图例文本大小,但文本不显示。X轴上的标签是重叠的。CSV文件:

01-05-14, 55494, Build 1
10-05-14, 55000, Build 2
15-05-14, 55500, Build 3
20-05-14, 57482, Build 4
25-05-14, 58741, Build 5

如何从csv中添加xytext并更改图例和X轴的格式?


Tags: csvimportbuildtrue图形matplotlibasnp
1条回答
网友
1楼 · 发布于 2024-05-19 15:40:20

你需要annotate,例如:

plt.annotate('some text',xy=(days[0],impressions[0]))

要调整x轴文本,可以添加:

fig=plt.figure() # below the import statements
...
fig.autofmt_xdate() # after plotting

要更改图例文本,请在绘图函数中使用label参数:

plt.plot_date(x=days, y=impressions, fmt="r-",label="response times")

要增加图例字体大小,请执行以下操作:

plt.legend(fontsize='x-large')

相关问题 更多 >