I have data
used_at 2014 2015
address
auto.ru 9122342 6923367
am.ru 413071 183402
avito.ru 84503151 87688571
avtomarket.ru 106849 95927
cars.mail.ru/sale 211456 167278
and i need to print graph with rotation
address
.
I print
ax = graph_by_duration.plot.bar(width=0.5, ax=axes[0])
ax.set_xticklabels(graph_by_duration, rotation=40)
but it doesn't work. How can I do it?