We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f8b190 commit ab76365Copy full SHA for ab76365
asv_bench/benchmarks/strings.py
@@ -34,7 +34,6 @@ def setup(self, dtype):
34
35
# GH37371. Testing construction of string series/frames from ExtensionArrays
36
self.series_cat_arr = Categorical(self.series_arr)
37
- self.frame_cat_arr = Categorical(self.frame_arr)
38
39
def time_series_construction(self, dtype):
40
Series(self.series_arr, dtype=dtype)
@@ -54,12 +53,6 @@ def time_cat_series_construction(self, dtype):
54
53
def peakmem_cat_series_construction(self, dtype):
55
Series(self.series_cat_arr, dtype=dtype)
56
57
- def time_cat_frame_construction(self, dtype):
58
- DataFrame(self.frame_cat_arr, dtype=dtype)
59
-
60
- def peakmem_cat_frame_construction(self, dtype):
61
62
63
64
class Methods(Dtypes):
65
def time_center(self, dtype):
0 commit comments