Similar to Ploting Time Series Data with all the time stamp labeled in python
The data set has Time Stamp to 30 Second Resolution, When Ploting, how to specify to mark a X label in every hourly interval.
Similar to Ploting Time Series Data with all the time stamp labeled in python
The data set has Time Stamp to 30 Second Resolution, When Ploting, how to specify to mark a X label in every hourly interval.
Use xticks.
times = [0, 30, 60, 90, 120, ...]
filtered_times = times[::120] # Skip 60 minutes at a time
xticks(filtered_times, map(str, filtered_times))