We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb2d6eb commit bca7be9Copy full SHA for bca7be9
asv_bench/benchmarks/frame_methods.py
@@ -299,7 +299,7 @@ def time_apply_axis_1(self):
299
self.df.apply((lambda x: (x + 1)), axis=1)
300
301
def time_apply_lambda_mean(self):
302
- self.df.apply((lambda x: x.sum()))
+ self.df.apply((lambda x: x.mean()))
303
304
def time_apply_np_mean(self):
305
self.df.apply(np.mean)
0 commit comments