8000 Fix tutorial pyplot scales (issue #6775) by afvincent · Pull Request #6779 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fix tutorial pyplot scales (issue #6775) #6779

New issue

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

Merged
merged 2 commits into from
Jul 18, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Tweak linthreshy to avoid overlap of y-ticklabels
  • Loading branch information
afvincent committed Jul 17, 2016
commit c97fea9a0d1c2c0d76a1c775ca2bca859568a4a5
2 changes: 1 addition & 1 deletion doc/pyplots/pyplot_scales.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# symmetric log
plt.subplot(223)
plt.plot(x, y - y.mean())
plt.yscale('symlog', linthreshy=0.05)
plt.yscale('symlog', linthreshy=0.01)
plt.title('symlog')
plt.grid(True)

Expand Down
0