-
- Notifications
You must be signed in to change notification settings - Fork 19.4k
ENH: Rolling rank #43338
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
Merged
Merged
ENH: Rolling rank #43338
Changes from 1 commit
Commits
Show all changes
18 commits Select commit Hold shift + click to select a range
3ebf8c0 ENH: rolling rank
gsiano ce754f7 ENH: rolling rank
gsiano f13a720 Merge branch 'rolling_rank' of github.com:gsiano/pandas into rolling_…
gsiano 874c980 ENH: rolling rank
gsiano 4d06ba3 ENH: rolling rank
gsiano 1308208 ENH: rolling rank
gsiano 4caa51b ENH: rolling rank
gsiano f2ee5b2 ENH: rolling rank - rank methods
gsiano b135f1e ENH: rolling rank - `ascending` flag
gsiano fda85b4 ENH: rolling rank
gsiano e692ce3 ENH: rolling rank - reorder parameter list
gsiano 6b23fc0 ENH: rolling rank - address pre-commit errors
gsiano 5f7d319 ENH: rolling rank
gsiano 63d37c5 ENH: rolling rank - fix pre-commit errors
gsiano ba468c6 ENH: rolling rank
gsiano e078119 Merge branch 'master' into rolling_rank
gsiano bb7005f ENH: rolling rank
gsiano 1470c7b ENH: rolling rank
gsiano File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ENH: rolling rank -
ascending flag added the `ascending` flag, various cleanups, expanded tests and asv benchmark
- Loading branch information
commit b135f1e0b1e8ef3e5aecf937bf050c4b35f3f96a
There are no files selected for viewing
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| | @@ -1505,15 +1505,18 @@ def test_rolling_numeric_dtypes(): | |
| @pytest.mark.parametrize("window", [1, 3, 10, 50, 1000]) | ||
| @pytest.mark.parametrize("method", ["min", "max", "average"]) | ||
| @pytest.mark.parametrize("pct", [True, False]) | ||
| @pytest.mark.parametrize("dups", [True, False]) | ||
| def test_rank(window, method, pct, dups): | ||
| @pytest.mark.parametrize("ascending", [True, False]) | ||
| @pytest.mark.parametrize("test_data", ["default", "duplicates", "nans"]) | ||
| def test_rank(window, method, pct, ascending, test_data): | ||
| length = 1000 | ||
| ||
| if dups: | ||
| ser = Series(data=np.random.choice(3, length)) | ||
| else: | ||
| if test_data == "default": | ||
| ser = Series(data=np.random.rand(length)) | ||
| elif test_data == "duplicates": | ||
| ser = Series(data=np.random.choice(3, length)) | ||
| elif test_data == "nans": | ||
| ser = Series(data=np.random.choice([1.0, 0.25, 0.75, np.nan], length)) | ||
| ||
| | ||
| expected = ser.rolling(window).apply(lambda x: x.rank(method=method, pct=pct).iloc[-1]) | ||
| result = ser.rolling(window).rank(method=method, pct=pct) | ||
| expected = ser.rolling(window).apply(lambda x: x.rank(method=method, pct=pct, ascending=ascending).iloc[-1]) | ||
| result = ser.rolling(window).rank(method=method, pct=pct, ascending=ascending) | ||
| | ||
| tm.assert_series_equal(result, expected) | ||
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.
Uh oh!
There was an error while loading. Please reload this page.