-
-
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
PERF: regression in Series constructor #30564
Comments
Hmm, so in if data:
keys, values = zip(*data.items())
values = list(values) and then go back through |
Oh fun. In In #3047, we include the |
* PERF: Fixed performance regression in Series init Closes #30564 * avoid calling
* PERF: Fixed performance regression in Series init Closes pandas-dev#30564 * avoid calling
This is captured in the
SeriesConstructor.time_constructor
asv.On master
On 0.25.x
Looking into a bit now. We're spending a lot more time in
ensure_index
->is_period_dtype
/is_dtype
/construct_from_string
.The text was updated successfully, but these errors were encountered: