bar chart with x ticks

Solutions on MaxInterview for bar chart with x ticks by the best coders in the world

showing results for - "bar chart with x ticks"
Jakob
02 Aug 2020
1plt.bar(weekday_averages['weekday'], weekday_averages['casual'])
2plt.xticks(ticks=[0, 1, 2, 3, 4, 5, 6],
3          labels=['Sunday', 'Monday', 'Tuesday', 'Wednesday',
4                 'Thursday', 'Friday', 'Saturday'],
5          rotation=30)
6plt.show()
similar questions
queries leading to this page
bar chart with x ticks