From 8abab056e26e351b0abafa411632374283a9d00d Mon Sep 17 00:00:00 2001 From: Deepak Cherian Date: Mon, 27 Mar 2023 21:20:42 -0600 Subject: [PATCH] [skip-ci] Update asv_bench/benchmarks/groupby.py --- asv_bench/benchmarks/groupby.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asv_bench/benchmarks/groupby.py b/asv_bench/benchmarks/groupby.py index 8cd23f3947c..c75349346a5 100644 --- a/asv_bench/benchmarks/groupby.py +++ b/asv_bench/benchmarks/groupby.py @@ -90,7 +90,7 @@ def setup(self, *args, **kwargs): requires_dask() super().setup(**kwargs) self.ds1d = self.ds1d.chunk({"dim_0": 50}).to_dataframe() - self.ds1d_mean = self.ds1d.groupby("b").mean().compute() + self.ds1d_mean = self.ds1d.groupby("b").mean() def time_binary_op_2d(self): raise NotImplementedError