-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Adding testcase for quartile performed on a timestamp column group by ( closes #33168 ) #47575
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
Conversation
… groupby on Time Zone Aware Timestamps
This is my first open source PR 🙂 any & all feedback is most welcome. Was wondering if one testcase would suffice here or we can add more by trying different inputs & its expected values ( similar to those above using |
… groupby on Time Zone Aware Timestamps pre check changes
Looks pretty good. The code checks are failing though https://github.com/pandas-dev/pandas/runs/7156494708?check_suite_focus=true |
thanks @mroeschke, have corrected the code style & looks like the code checks have passed now |
|
||
expected = DataFrame( | ||
[ | ||
{"category": 6.9, "value": 206.9}, |
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.
Is it possible to create the DataFrames with less data? If possible, the test should be minimal
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.
sure thing @phofl, have updated the testcase accordingly. do let me know if any other change is needed. Thanks in advance.
thanks @dannyi96 |
Have added a testcase for quartile performed on a timestamp column group by. This change closes #33168