Fix pandas 1.5.3 compatibility issues #12
Merged
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.
Problem
Users with pandas 1.5.3 are experiencing errors when using IGLU-Python functions:
Root Cause
The
include_groupsparameter was introduced in pandas 2.0.0, but many users still have pandas 1.5.3 installed. This parameter doesn't exist in older pandas versions, causing the error.Solution
This PR fixes compatibility by:
include_groups=Falseparameters fromgroupby().apply()callsChanges Made
Files Modified
iglu_python/auc.py- Fixed 2 groupby operationsiglu_python/grade.py- Fixed 1 groupby operationiglu_python/episode_calculation.py- Fixed 3 groupby operationspyproject.toml- Version bump to 0.3.1Technical Details
data.groupby('id').apply(lambda x: ..., include_groups=False)data.groupby('id')[['gl']].apply(lambda x: ...)Compatibility Matrix
Testing
✅ All functions tested and working:
iglu.auc()- AUC calculationiglu.grade()- GRADE score calculationiglu.episode_calculation()- Episode analysisImpact
This fix ensures IGLU-Python works seamlessly across different pandas versions without requiring users to upgrade their pandas installation.