-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
DOC: Fix PR01 errors in multiple files (#57438) #57504
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
Changes from 5 commits
ccaf2c8
66e62a3
84edc1e
4caa5d6
ce42a2e
4add81d
88398c0
68d66fc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1358,7 +1358,7 @@ def ohlc(self): | |
return self._downsample("ohlc") | ||
|
||
@final | ||
@doc(SeriesGroupBy.nunique) | ||
@doc(SeriesGroupBy.nunique, extra_params="") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you give this a distinct docstring (e.g. copy-paste the SeriesGroupBy.nunique docstring here) and avoid using doc? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds good. Since they're now their own distinct docstrings, I separated the examples too (added see alsos to each other instead) |
||
def nunique(self): | ||
return self._downsample("nunique") | ||
|
||
|
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.
Connecting with my other comment, can you avoid using
doc
here?