Skip to content
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

Add benchmark for indexing with .loc for sorted/unsorted DatetimeIndex #46198

Merged
merged 8 commits into from
Mar 4, 2022
Merged
Changes from all commits
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
20 changes: 13 additions & 7 deletions asv_bench/benchmarks/indexing.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,20 +290,26 @@ def setup(self):
self.dti = dti
self.dti2 = dti2

index = np.random.choice(dti, 10000, replace=True)
df = DataFrame(index=index, data={"a": 1})
df_sort = df.sort_index()
self.df = df
self.df_sort = df_sort

def time_get_indexer_mismatched_tz(self):
# reached via e.g.
# ser = Series(range(len(dti)), index=dti)
# ser[dti2]
self.dti.get_indexer(self.dti2)


class SortedAndUnsortedDatetimeIndexLoc:
def setup(self):
dti = date_range("2016-01-01", periods=10000, tz="US/Pacific")
index = np.array(dti)

unsorted_index = index.copy()
unsorted_index[10] = unsorted_index[20]

self.df_unsorted = DataFrame(index=unsorted_index, data={"a": 1})
self.df_sort = DataFrame(index=index, data={"a": 1})

def time_loc_unsorted(self):
self.df.loc["2016-6-11"]
self.df_unsorted.loc["2016-6-11"]

def time_loc_sorted(self):
self.df_sort.loc["2016-6-11"]
Expand Down