我怎样才能让value_counts高于阈值?我试过了
df[df[col].value_counts(dropna=False) > 3]
字符串
得到所有大于3的计数,但我得到
IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).
型
有什么提示吗?谢谢
我怎样才能让value_counts高于阈值?我试过了
df[df[col].value_counts(dropna=False) > 3]
字符串
得到所有大于3的计数,但我得到
IndexingError: Unalignable boolean Series provided as indexer (index of the boolean Series and of the indexed object do not match).
型
有什么提示吗?谢谢
3条答案
按热度按时间vs3odd8k1#
试试看:
字符串
value_counts
:型
value_counts
和map
的另一种方法:型
bfnvny8b2#
尝试使用
isin
并与原始value_counts
链接字符串
也可以试试
filter
型
bweufnob3#
坚持
value_counts
,这里有一个简单的解决方案:字符串