Skip to content

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

Merged
merged 1 commit into from
Oct 19, 2022

Conversation

timhoffm
Copy link
Member

@timhoffm timhoffm commented Sep 24, 2022

Changes:

  • tricontour(x, y, Z, ...) --> trcontour(x, y, z, ...) (and same for tricontourf()
  • 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.

@timhoffm timhoffm added this to the v3.6.1 milestone Sep 24, 2022
@timhoffm timhoffm force-pushed the doc-param-capitalization branch from e8499eb to 501dfde Compare September 24, 2022 22:45
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.
Copy link
Member

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.

Copy link
Member Author

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.

Copy link
Member

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?

Copy link
Member Author

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.

@timhoffm
Copy link
Member Author

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.
@timhoffm timhoffm force-pushed the doc-param-capitalization branch from 5bec61c to 4f04c56 Compare October 16, 2022 21:12
@oscargus oscargus merged commit 65c1b89 into matplotlib:main Oct 19, 2022
meeseeksmachine pushed a commit to meeseeksmachine/matplotlib that referenced this pull request Oct 19, 2022
tacaswell added a commit that referenced this pull request Oct 19, 2022
…995-on-v3.6.x

Backport PR #23995 on branch v3.6.x (DOC: Lowercase some parameter names)
@timhoffm timhoffm deleted the doc-param-capitalization branch October 19, 2022 16:59
@ksunden ksunden mentioned this pull request Feb 20, 2023
6 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants