要格式化Pandas / Matplotlib图形,使x轴刻度仅为小时和分钟,可以按照以下步骤进行操作:
import pandas as pd
import matplotlib.pyplot as plt
data = {'时间': ['2022-01-01 09:00:00', '2022-01-01 09:15:00', '2022-01-01 09:30:00', '2022-01-01 09:45:00'],
'数值': [10, 20, 15, 25]}
df = pd.DataFrame(data)
df['时间'] = pd.to_datetime(df['时间'])
fig, ax = plt.subplots()
ax.plot(df['时间'], df['数值'])
ax.xaxis.set_major_locator(plt.MaxNLocator(6)) # 设置最大刻度数量为6
ax.xaxis.set_major_formatter(plt.DateFormatter('%H:%M')) # 设置刻度格式为小时和分钟
plt.show()
这样,x轴刻度就会被格式化为小时和分钟。你可以根据需要调整刻度数量和格式。
关于腾讯云相关产品和产品介绍链接地址,由于要求不能提及具体品牌商,建议你参考腾讯云的官方文档或咨询腾讯云的客服人员,以获取与云计算相关的产品和服务信息。
领取专属 10元无门槛券
手把手带您无忧上云