bug fix urgh

dev
Steve L. Nyemba 5 years ago
parent 02d8588f5b
commit 9fff0d123e

@ -198,7 +198,7 @@ class Binary :
This function will return the columns that are available for processing ...
"""
values = column.dropna().value_counts().index
if size > 0 :
if size > 0 and column.size > size:
values = values[:size]
values.sort_values()
return values

Loading…
Cancel
Save