My xticks of Days (categorical data from data frame) doesn't appear in correct order, how to change it?
plt.figure(figsize=(13,6))
houragg = pd.DataFrame(df.groupby(['Day','Seasons'])['bike_count'].mean()).reset_index()
sns.pointplot(data=houragg,x=houragg['Day'],
y=houragg['bike_count'],
scale = 0.3,
hue=houragg['Seasons']).set(title='Count by Day and Seasons')
plt.legend(bbox_to_anchor=(1.02, 1), loc='upper left', borderaxespad=0)
here is the plot: