繁体   English   中英

以日期时间为索引绘制数据框,仅在 python 的 x 轴上显示小时、分钟和秒

[英]plot dataframe with datetime as index and only display hours, minutes, and seconds on x-axis in python

我可以使用此代码生成以下图:

df_day['Time'] = pd.to_datetime(df_day['Time'], format = '%H:%M:%S')
df_day = df_day.set_index('Time')

fig=plt.figure(dpi=900)
plt.title("TESTER Summary for Day %i " %y + "\n Average Chamber Pressure %.3f [torr] \n" %p_avg_temp  + str(dates[x]))

ax1 = df_day['DP-2'].plot(label = 'DP-2')
ax2 = df_day['FM-1'].plot(secondary_y = True, label = "Flow Rate")

ax1.set_ylabel('Temperatures - Pressure Drop\nInlet Pressure - Scale Weight')

ax2.set_ylabel('Flow Rate - Heat Rej.')

ax1.set_xlabel('Time ')

handles,labels = [],[]
for ax in fig.axes:
    for h,l in zip(*ax.get_legend_handles_labels()):
        handles.append(h)
        labels.append(l)

plt.legend(handles, labels, loc = 'lower center', bbox_to_anchor = (0.5, -0.5), ncol = 3)
fig.subplots_adjust(bottom = 0.25)

ax1.grid(True, linestyle = ':')
ax2.grid(True, linestyle = ':')
plt.show()

在此处输入图像描述

但我不希望日期出现在 xtick 标签中。 我想要小时、分钟和秒。 我也试过:

df_day['Time'] = pd.Series([val.time() for val in df_day['Time']])

代替

df_day['Time'] = pd.to_datetime(df_day['Time'], format = '%H:%M:%S')

但后来我得到

在此处输入图像描述

并且时间间隔是任意的,当秒为 00 时不包括秒。

在编码之前尝试运行此行:

import matplotlib.dates as mdates

myFmt = mdates.DateFormatter('%H:%M:%S') # here you can format your datetick labels as desired
plt.gca().xaxis.set_major_formatter(myFmt)

并查看此帖子plot_date function set xticks for hourly data

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM