无法在Python Pandas中找到聚合结果列

时间:2018-03-05 15:43:58

标签: python pandas

/project
    /pkg
        __init__.py
        engine.y
        ai.py
    __init__.py
    test_script.py

'计算'专栏?

1 个答案:

答案 0 :(得分:1)

我认为您正在寻找value_counts

p.date.value_counts()
Out[1095]: 
09-10-2017    3
13-10-2017    3
10-10-2017    3
12-10-2017    3
08-10-2017    3
11-10-2017    3
14-10-2017    2
Name: date, dtype: int64

如果你想使用groupby

p.groupby('date').size()

如果想要使用计数

p.groupby('date').agg({'date':'count'})
Out[1101]: 
            date
date            
08-10-2017     3
09-10-2017     3
10-10-2017     3
11-10-2017     3
12-10-2017     3
13-10-2017     3
14-10-2017     2