PHP前端开发

如何使用Pylot在横坐标上仅显示时间部分(时/分),去除年月日信息?

百变鹏仔 4天前 #Python
文章标签 横坐标

在pylot横坐标中移除年月日

如何将横坐标上的datetime.datetime类型数据仅显示为时间部分(时/分),去除年月日信息?

解决方案:

import datetimeimport pylot# 创建只包含时间部分的datetime对象x = [datetime.time(10, 59), datetime.time(14, 59), datetime.time(16, 59)]# 创建一个固定日期的datetime对象作为横坐标参照ref_date = datetime.datetime(1970, 1, 1)# 将时间数据转换成datetime对象x_datetime = [ref_date.replace(hour=t.hour, minute=t.minute) for t in x]# 绘制图形pylot.plot(x_datetime, [1, 2, 3])pylot.xlabel("时间(时/分)")pylot.show()

在这种方法中,虽然仍然使用datetime类型,但可以通过将年月日都设置为相同值,来达到仅显示时间部分的目的。