-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
DOC: Lowercase some parameter names #23995
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
Conversation
e8499eb
to
501dfde
Compare
Determines the orientation and exact position of *Z* by specifying the | ||
position of ``Z[0, 0]``. This is only relevant, if *X*, *Y* are not given. | ||
Determines the orientation and exact position of *z* by specifying the | ||
position of ``z[0, 0]``. This is only relevant, if *X*, *Y* are not given. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about *X*
etc here and below? I cannot say that I fully follow, but it is talked about x
earlier.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interestingly, origin
and extent
are not used by tricontour[f]
😲. They are used in contour[f]
, where one can leave out X and Y, in which case origin
and extent
define where to place the data in the Axes. When one thinks about it, this concept does obviously does not apply to triangular grids. One always has to specify x and y, either directly or via a `Triangulation.
It's a bit hard to see that origin
and extent
are unused, because they are passed through multiple levels of kwargs and are added as attributes to ContourSet
, which is the common base class of TriContourSet
and QuadContourSet
. But TriContourSet
does not use them. One can also check this by removing the validation checks on these values and then passing in nonsense values: The plot does not care. It seems this docstring part was copied from contour[f]
without thinking about it.
The origin
and extent
parameters will need to be removed. But that's a bit more complicated because even though unused we need to deprecate, and we have to figure out whether we can move them to QuadContourSet
. I therefore propose to ignore their docstrings in this PR. They will be cleaned up in a separate PR. For simplicity, we can merge as proposed - it really does not matter and does not make sense what is in there either way.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! What I meant though is that is seems like it should maybe be lower case x and y as well here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, my point was that this part of the docs doesn’t make sense either way and anyway will be removed soon. So it does not matter whether we change X and Y or not.
501dfde
to
5bec61c
Compare
Rebased to fix CI. |
There is no reason here for uppercase C or Z, the preceding parameters x, y are also not uppercase. Note that this is not an API change since these parameters are positional-only (created from *args). Thus, we can change the names without a deprecation.
5bec61c
to
4f04c56
Compare
…995-on-v3.6.x Backport PR #23995 on branch v3.6.x (DOC: Lowercase some parameter names)
Changes:
tricontour(x, y, Z, ...)
-->trcontour(x, y, z, ...)
(and same fortricontourf()
tripcolor(x, y, C, ...)
-->tricpcolor(x, y, c, ...)
There is no reason here for uppercase C or Z, the preceding parameters x, y are also not uppercase.
Note that this is not an API change since these parameters are positional-only (created from *args). Thus, we can change the names without a deprecation.