-
-
Notifications
You must be signed in to change notification settings - Fork 157
GH1318 Set more defaults in pandas/core #1569
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
base: main
Are you sure you want to change the base?
Changes from 2 commits
c4e1568
539c881
9a505ab
5ce9915
9634b50
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 | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -180,32 +180,32 @@ class _DatetimeRoundingMethods(Generic[_DTTimestampTimedeltaReturnType]): | |||||||||||||||
| def round( | ||||||||||||||||
| self, | ||||||||||||||||
| freq: Frequency | None, | ||||||||||||||||
| ambiguous: Literal["raise", "infer", "NaT"] | bool | np_ndarray_bool = ..., | ||||||||||||||||
| ambiguous: Literal["raise", "infer", "NaT"] | bool | np_ndarray_bool = "raise", | ||||||||||||||||
|
||||||||||||||||
| ambiguous: Literal["raise", "infer", "NaT"] | bool | np_ndarray_bool = "raise", | |
| ambiguous: TimeAmbiguous = "raise", |
and also for the other two cases
Outdated
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.
| nonexistent: ( | |
| Literal["shift_forward", "shift_backward", "NaT", "raise"] | |
| | timedelta | |
| | Timedelta | |
| ) = ..., | |
| ) = "raise", | |
| nonexistent: TimeNonexistent = "raise" |
and also for the other two cases
Outdated
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.
https://pandas.pydata.org/docs/dev/reference/api/pandas.DatetimeIndex.std.html
| self, axis: int | None = None, ddof: int = 1, skipna: bool = True | |
| self, axis: int | None = None, ddof: int = 1, keepdims: bool | None = False, skipna: bool = True |
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.