File tree Expand file tree Collapse file tree 3 files changed +1
-14
lines changed Expand file tree Collapse file tree 3 files changed +1
-14
lines changed Original file line number Diff line number Diff line change @@ -7291,7 +7291,7 @@ def f(x):
7291
7291
if filter_type is None or filter_type == 'numeric' :
7292
7292
data = self ._get_numeric_data ()
7293
7293
elif filter_type == 'bool' :
7294
- data = self . _get_data ()
7294
+ data = self
7295
7295
else : # pragma: no cover
7296
7296
msg = ("Generating numeric_only data with filter_type {f}"
7297
7297
"not supported." .format (f = filter_type ))
Original file line number Diff line number Diff line change @@ -5179,9 +5179,6 @@ def _check_inplace_setting(self, value):
5179
5179
5180
5180
return True
5181
5181
5182
- def _get_data (self ):
5183
- return self ._constructor (self ._data .get_data ()).__finalize__ (self )
5184
-
5185
5182
def _get_numeric_data (self ):
5186
5183
return self ._constructor (
5187
5184
self ._data .get_numeric_data ()).__finalize__ (self )
Original file line number Diff line number Diff line change @@ -632,16 +632,6 @@ def is_view(self):
632
632
633
633
return False
634
634
635
- def get_data (self , copy = False ):
636
- """
637
- Parameters
638
- ----------
639
- copy : boolean, default False
640
- Whether to copy the blocks
641
- """
642
- self ._consolidate_inplace ()
643
- return self .combine ([b for b in self .blocks ], copy )
644
-
645
635
def get_bool_data (self , copy = False ):
646
636
"""
647
637
Parameters
You can’t perform that action at this time.
0 commit comments