當前位置:成語大全網 - 新華字典 - python 如何統計dataframe中某壹列數據中每個元素出現的次數

python 如何統計dataframe中某壹列數據中每個元素出現的次數

不推薦使用collections統計或者list.count來統計,因為可能會遇到TypeError: unhashable type: 'list’錯誤。

此外也不推薦使用df3[“Alarm_Z”].value_counts()來統計,因為版本原因,有些版本的pandas好像沒有這個方法。

註意,當列表中含有缺失值時,這種方法可能會失效,需要先用字符型的“nan”來填充缺失值。