Skip to content
forked from pydata/xarray

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dcherian committed Mar 19, 2022
1 parent a0e6865 commit fd3031c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions asv_bench/benchmarks/groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ def setup(self, *args, **kwargs):
self.ds1d = self.ds1d.to_dataframe()
self.ds1d_mean = self.ds1d.groupby("b").mean()

def time_groupby_binary_op_1d(self):
self.ds1d - self.ds1d_mean

def time_groupby_binary_op_2d(self):
raise NotImplementedError

Expand All @@ -82,9 +79,6 @@ def setup(self, *args, **kwargs):
self.ds1d = self.ds1d.chunk({"dim_0": 50}).to_dataframe()
self.ds1d_mean = self.ds1d.groupby("b").mean()

def time_groupby_binary_op_1d(self):
self.ds1d - self.ds1d_mean

def time_groupby_binary_op_2d(self):
raise NotImplementedError

Expand Down

0 comments on commit fd3031c

Please sign in to comment.