类似于Ploting Time Series Data with all the time stamp labeled in python
数据集具有30秒分辨率的时间戳记,在绘制时,如何指定在每个小时间隔内标记X标签。
答案 0 :(得分:-1)
使用xticks。
times = [0, 30, 60, 90, 120, ...]
filtered_times = times[::120] # Skip 60 minutes at a time
xticks(filtered_times, map(str, filtered_times))