📌  相关文章
📜  要列出的 value_counts - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:51.480000             🧑  作者: Mango

代码示例1
df[column].value_counts()

# get indexes
df[column].value_counts().index.tolist()

# get values of occurrences
df[column].value_counts().values.tolist()