File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -1047,7 +1047,6 @@ class BinGrouper(BaseGrouper):
1047
1047
----------
1048
1048
bins : the split index of binlabels to group the item of axis
1049
1049
binlabels : the label list
1050
- filter_empty : bool, default False
1051
1050
mutated : bool, default False
1052
1051
indexer : np.ndarray[np.intp]
1053
1052
@@ -1069,17 +1068,20 @@ class BinGrouper(BaseGrouper):
1069
1068
1070
1069
"""
1071
1070
1071
+ bins : np .ndarray # np.ndarray[np.int64]
1072
+ binlabels : Index
1073
+ mutated : bool
1074
+
1072
1075
def __init__ (
1073
1076
self ,
1074
1077
bins ,
1075
1078
binlabels ,
1076
- filter_empty : bool = False ,
1077
1079
mutated : bool = False ,
1078
1080
indexer = None ,
1079
1081
):
1080
1082
self .bins = ensure_int64 (bins )
1081
1083
self .binlabels = ensure_index (binlabels )
1082
- self ._filter_empty_groups = filter_empty
1084
+ self ._filter_empty_groups = False
1083
1085
self .mutated = mutated
1084
1086
self .indexer = indexer
1085
1087
You can’t perform that action at this time.
0 commit comments