-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DOC: doc fix #36205
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
DOC: doc fix #36205
Conversation
LGTM |
doc/source/whatsnew/v1.1.2.rst
Outdated
@@ -51,7 +51,7 @@ Bug fixes | |||
Other | |||
~~~~~ | |||
- :meth:`factorize` now supports ``na_sentinel=None`` to include NaN in the uniques of the values and remove ``dropna`` keyword which was unintentionally exposed to public facing API in 1.1 version from :meth:`factorize` (:issue:`35667`) | |||
- :meth:`DataFrame.plot` and meth:`Series.plot` raise ``UserWarning`` about usage of FixedFormatter and FixedLocator (:issue:`35684` and :issue:`35945`) | |||
- :meth:`DataFrame.plot` and :meth:`Series.plot` raise ``UserWarning`` about usage of FixedFormatter and FixedLocator (:issue:`35684` and :issue:`35945`) |
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.
Should FixedFormatter and FixedLocator have double backticks?
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.
too bad the docs build doesn't warn on these things. maybe can have some sort of code check (at least to check the book-ended meth/func and so on
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.
Should FixedFormatter and FixedLocator have double backticks?
not sure. they are mpl classes. added anyway.
may have been better to include the message verbatim in this case instead UserWarning: FixedFormatter should only be used together with FixedLocator
as was done for ValueError: buffer source array is read-only
above.
Co-authored-by: Simon Hawkins <[email protected]>
#35831 (comment)