Draft
Conversation
Phase 0 Progress:
- Remove .iterrows() in contrib_importance_over_time.py (10-100x speedup)
- Replaced with vectorized cumsum + searchsorted
- Vectorize 12 .apply() calls:
- repo_general_info.py: .apply(lambda x: x.days) -> .dt.days
- project_velocity.py: .apply(math.log) -> np.log / np.where
- heatmap files: set() conversion via list comprehension
- augur_manager.py: .apply(str.lower) -> .str.lower()
- pr_over_time.py: row-by-row get_open -> vectorized get_open_vectorized
- issues_over_time.py: row-by-row get_open -> vectorized get_open_vectorized
- Remove 36 active inplace=True patterns
- Use functional chaining (df = df.drop/rename/etc.)
- Use reset_index(drop=True) instead of reset_index() + drop('index')
Migration Plan:
- Add POLARS_MIGRATION_PLAN.md with 'Polars Core, Pandas Edge' architecture
- Polars for data processing, Pandas at visualization boundary (Plotly/Dash)
- Remaining .apply() calls (21) are complex stateful ops -> Phase 3+ candidates
Performance improvements:
- .iterrows() removal: 10-100x faster for lottery factor calculation
- .apply() vectorization: 5-50x faster for date-based counting
- Cleaner code: functional patterns easier to reason about
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR part of a series for the 8Knot migration to Polars processing and Pandas for only visualizations.
Generative AI disclosure