8000 Clarify docstring for SymmetricLogScale linthresh keyword arg by LindyBalboa · Pull Request #9012 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Clarify docstring for SymmetricLogScale linthresh keyword arg #9012

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 1 commit into from
Aug 10, 2017
Merged
Changes from all commits
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
Clarify docstring for linthresh keyword arg
The linthreshx/y keyword argument for the SymmetricalLogScale class
could have been misunderstood as accepting a tuple. Added some words
to make sure this is completely obvious when reading the documentation.
  • Loading branch information
LindyBalboa committed Aug 10, 2017
commit 92e69e154c4282932ee41e9e32dc4d3a51771fe8
5 changes: 3 additions & 2 deletions lib/matplotlib/scale.py
5B16
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,9 @@ def __init__(self, axis, **kwargs):
The base of the logarithm

*linthreshx*/*linthreshy*:
The range (-*x*, *x*) within which the plot is linear (to
avoid having the plot go to infinity around zero).
A single float which defines the range (-*x*, *x*), within
which the plot is linear. This avoids having the plot go to
infinity around zero.

*subsx*/*subsy*:
Where to place the subticks between each major tick.
Expand Down
0