Open
Description
Request was to add x-axis labels in plain matplotlib in the section "Combining Matplolib, Pandas and Seaborn".
There is already an example for the seaborn plot using matplotlib.axes.Axes.set_xticklabels
To add:
_ = ax.set_xticks(ticks=x)
_ = ax.set_xticklabels(labels=list(some_counts["Denmark"].keys()), rotation=45)
# _ = plt.xticks(ticks=x, labels=list(some_counts["Denmark"].keys()), rotation=45)
Metadata
Metadata
Assignees
Labels
No labels