pandas nunique
时间: 2023-11-09 21:58:02 浏览: 81
pandas官方文档中文版_pandas_数据清洗_
5星 · 资源好评率100%
pandas中的nunique()函数用于计算数据框中唯一值的数量。它返回每列的唯一值数量。下面是一个示例:
```python
import pandas as pd
data = {'col1': [1, 2, 3, 4, 5],
'col2': ['a', 'b', 'c', 'd', 'e'],
'col3': [1, 1, 2, 2, 3]}
df = pd.DataFrame(data)
# 计算每列的唯一值数量
unique_counts = df.nunique()
print(unique_counts)
```
输出结果为:
```
col1 5
col2 5
col3 3
dtype: int64
```
这里的输出结果表示在列`col1`中有5个唯一值,在列`col2`中有5个唯一值,在列`col3`中有3个唯一值。
阅读全文