-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
PERF: DataFrame construction #42631
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
PERF: DataFrame construction #42631
Conversation
jbrockmendel
commented
Jul 20, 2021
cool i would actually add a release note about this as this is a significant perf improvement. does this hold more generally with other construction asv's? also doe you think its the removing asserts or the changes in not using is_sparse that are the big wins here? (guessing its the asserts) |
I forget the exact numbers, but remember being surprised how big a difference the is_sparse change made |
I'm seeing failure for the groupby.apply doctest on master. The condition that leads to raising an error is
Looks like shape is being cached here - might be related? |
good catch, that caching should be reverted (and ideally a non-doctest test implemented) |
This reverts commit 9d6f8fe.