I have a graph like this ,it records every hours data for 21 days, the labels are like: 01-30 00:00, 01-30 01:00....now they are unreadable, so I want to set only one label per day, so only show everyday's first label: 01-30 00:00, 01-31 00:00,etc
my code is:
fig1 = plt.figure()
ax = fig1.add_subplot(111)
ind = np.arange(len(timelist))
ax.bar(ind,reqlist,color='b')
ax.set_xlim((0,len(timelist)))
ax.set_ylabel('Number of request/video',size='x-large')
ax.set_title('Request per hour North',size='xx-large')
ax.set_xticks(ind)
ax.set_xticklabels(timelist,rotation=17)
timelist is a list of string: ["01-30 00:00", "01-30 00:01".....]