We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
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)
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: