From 4e1f1d351fb04e96d067336a9cf0938bf6004e6c Mon Sep 17 00:00:00 2001 From: phofl Date: Sat, 2 Jan 2021 00:56:10 +0100 Subject: [PATCH] ASV: Add asv for groupby.indices --- asv_bench/benchmarks/groupby.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/asv_bench/benchmarks/groupby.py b/asv_bench/benchmarks/groupby.py index bf210352bcb5d..b4d9db95af163 100644 --- a/asv_bench/benchmarks/groupby.py +++ b/asv_bench/benchmarks/groupby.py @@ -126,6 +126,9 @@ def setup(self, data, key): def time_series_groups(self, data, key): self.ser.groupby(self.ser).groups + def time_series_indices(self, data, key): + self.ser.groupby(self.ser).indices + class GroupManyLabels: