-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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: add missing parameters to DateOffset classes: Milli, Micro and Nano #56336
Conversation
pandas/_libs/tslibs/offsets.pyx
Outdated
Timestamp('2022-12-09 15:00:00.010000') | ||
>>> ts - Milli(n=10) |
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.
Timestamp('2022-12-09 15:00:00.010000') | |
>>> ts - Milli(n=10) | |
Timestamp('2022-12-09 15:00:00.010000') | |
>>> ts - Milli(n=10) |
pandas/_libs/tslibs/offsets.pyx
Outdated
Timestamp('2022-12-09 15:00:00.001000') | ||
>>> ts - Micro(n=1000) |
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.
Timestamp('2022-12-09 15:00:00.001000') | |
>>> ts - Micro(n=1000) | |
Timestamp('2022-12-09 15:00:00.001000') | |
>>> ts - Micro(n=1000) |
pandas/_libs/tslibs/offsets.pyx
Outdated
Timestamp('2022-12-09 15:00:00.000001') | ||
>>> ts - Nano(n=1000) |
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.
Timestamp('2022-12-09 15:00:00.000001') | |
>>> ts - Nano(n=1000) | |
Timestamp('2022-12-09 15:00:00.000001') | |
>>> ts - Nano(n=1000) |
Could you fix the code checks? |
Thanks @vinitaparasrampuria |
Updated documentation by