From f074101e44182729ab37b57af436b83bceecaa2e Mon Sep 17 00:00:00 2001 From: debnathshoham Date: Sat, 29 Oct 2022 12:48:03 +0530 Subject: [PATCH] asv groupby.string smaller_faster --- 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 2225cbd74d718..f369c095e59b1 100644 --- a/asv_bench/benchmarks/groupby.py +++ b/asv_bench/benchmarks/groupby.py @@ -683,7 +683,7 @@ class String: def setup(self, dtype, method): cols = list("abcdefghjkl") self.df = DataFrame( - np.random.randint(0, 100, size=(1_000_000, len(cols))), + np.random.randint(0, 100, size=(10_000, len(cols))), columns=cols, dtype=dtype, )