bug fix urgh
This commit is contained in:
parent
02d8588f5b
commit
9fff0d123e
|
@ -198,7 +198,7 @@ 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
|
||||||
|
|
Loading…
Reference in New Issue