Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion asv_bench/benchmarks/frame_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def time_apply_axis_1(self):
self.df.apply((lambda x: (x + 1)), axis=1)

def time_apply_lambda_mean(self):
self.df.apply((lambda x: x.sum()))
self.df.apply((lambda x: x.mean()))

def time_apply_np_mean(self):
self.df.apply(np.mean)
Expand Down