Skip to content

REF/POC: Share groupby/series algos (rank) #38744

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 20 commits into from
Jan 1, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
wip
  • Loading branch information
mzeitlin11 committed Dec 27, 2020
commit f0b5edb3545f53d6d9284b3db7b23fb82b686ab2
4 changes: 2 additions & 2 deletions asv_bench/benchmarks/series_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,9 @@ class Rank:
]

def setup(self, dtype):
self.s = Series(np.random.randint(0, 1000, size=10000), dtype=dtype)
self.s = Series(np.random.randint(0, 1000, size=100000), dtype=dtype)

def time_frame_quantile(self, dtype):
def time_rank(self, dtype):
self.s.rank()


Expand Down