-
-
Notifications
You must be signed in to change notification settings - Fork 145
type align #1138
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
type align #1138
Changes from 1 commit
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 |
---|---|---|
|
@@ -732,11 +732,7 @@ class DataFrame(NDFrame, OpsMixin, _GetItemHack): | |
axis: Axis | None = ..., | ||
level: Level | None = ..., | ||
copy: _bool = ..., | ||
fill_value=..., | ||
method: FillnaOptions | None = ..., | ||
limit: int | None = ..., | ||
fill_axis: Axis = ..., | ||
broadcast_axis: Axis | None = ..., | ||
fill_value: Hashable | None = ..., | ||
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. some methods use 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. This should be |
||
) -> tuple[Self, NDFrameT]: ... | ||
def reindex( | ||
self, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1034,11 +1034,7 @@ class Series(IndexOpsMixin[S1], NDFrame): | |
axis: Axis | None = ..., | ||
level: Level | None = ..., | ||
copy: _bool = ..., | ||
fill_value=..., | ||
method: FillnaOptions | None = ..., | ||
limit: int | None = ..., | ||
fill_axis: AxisIndex = ..., | ||
broadcast_axis: AxisIndex | None = ..., | ||
fill_value: Hashable | None = ..., | ||
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. Use |
||
) -> tuple[Series, Series]: ... | ||
@overload | ||
def rename( | ||
|
Uh oh!
There was an error while loading. Please reload this page.