@@ -67,22 +67,6 @@ def time_iloc_scalar(self, index, index_structure):
67
67
def time_iloc_slice (self , index , index_structure ):
68
68
self .data .iloc [:800000 ]
69
69
70
- def time_ix_array (self , index , index_structure ):
71
- with warnings .catch_warnings (record = True ):
72
- self .data .ix [self .array ]
73
-
74
- def time_ix_list_like (self , index , index_structure ):
75
- with warnings .catch_warnings (record = True ):
76
- self .data .ix [[800000 ]]
77
-
78
- def time_ix_scalar (self , index , index_structure ):
79
- with warnings .catch_warnings (record = True ):
80
- self .data .ix [800000 ]
81
-
82
- def time_ix_slice (self , index , index_structure ):
83
- with warnings .catch_warnings (record = True ):
84
- self .data .ix [:800000 ]
85
-
86
70
def time_loc_array (self , index , index_structure ):
87
71
self .data .loc [self .array ]
88
72
@@ -148,10 +132,6 @@ def setup(self):
148
132
self .bool_indexer = self .df [self .col_scalar ] > 0
149
133
self .bool_obj_indexer = self .bool_indexer .astype (object )
150
134
151
- def time_ix (self ):
152
- with warnings .catch_warnings (record = True ):
153
- self .df .ix [self .idx_scalar , self .col_scalar ]
154
-
155
135
def time_loc (self ):
156
136
self .df .loc [self .idx_scalar , self .col_scalar ]
157
137
@@ -228,14 +208,6 @@ def setup(self):
228
208
self .idx = IndexSlice [20000 :30000 , 20 :30 , 35 :45 , 30000 :40000 ]
229
209
self .mdt = self .mdt .set_index (["A" , "B" , "C" , "D" ]).sort_index ()
230
210
231
- def time_series_ix (self ):
232
- with warnings .catch_warnings (record = True ):
233
- self .s .ix [999 ]
234
-
235
- def time_frame_ix (self ):
236
- with warnings .catch_warnings (record = True ):
237
- self .df .ix [999 ]
238
-
239
211
def time_index_slice (self ):
240
212
self .mdt .loc [self .idx , :]
241
213
@@ -310,10 +282,6 @@ def setup_cache(self):
310
282
def time_lookup_iloc (self , s ):
311
283
s .iloc
312
284
313
- def time_lookup_ix (self , s ):
314
- with warnings .catch_warnings (record = True ):
315
- s .ix
316
-
317
285
def time_lookup_loc (self , s ):
318
286
s .loc
319
287
0 commit comments