(self, method)
| 340 | param_names = ["method"] |
| 341 | |
| 342 | def setup(self, method): |
| 343 | df = pd.DataFrame({"A": range(50), "B": range(50)}) |
| 344 | self.gb_ewm = df.groupby("A").ewm(com=1.0) |
| 345 | |
| 346 | def time_groupby_method(self, method): |
| 347 | getattr(self.gb_ewm, method)() |