bug fix urgh
This commit is contained in:
parent
02d8588f5b
commit
9fff0d123e
|
@ -198,9 +198,9 @@ class Binary :
|
||||||
This function will return the columns that are available for processing ...
|
This function will return the columns that are available for processing ...
|
||||||
"""
|
"""
|
||||||
values = column.dropna().value_counts().index
|
values = column.dropna().value_counts().index
|
||||||
if size > 0 :
|
if size > 0 and column.size > size:
|
||||||
values = values[:size]
|
values = values[:size]
|
||||||
values.sort_values()
|
values.sort_values()
|
||||||
return values
|
return values
|
||||||
|
|
||||||
def _get_column_values(self,column,size=-1):
|
def _get_column_values(self,column,size=-1):
|
||||||
|
|
Loading…
Reference in New Issue