Group_by Pandas的纬度和经度?

时间:2017-11-22 19:20:01

标签: python pandas

我有一个pandas DataFrame有两列:Latitude和Longitude。

我有一些重复的(纬度,经度)对,例如:

35.650417 | 65.135421
35.650417 | 65.456462

如何将重复的对合并为一行,并有一个新列说明每对重复多少次?

上一个例子将成为:

35.650417 | 65.135421 | 2

2 个答案:

答案 0 :(得分:0)

df.groupby(['latitude','longitude']).size()

答案 1 :(得分:-1)

df.groupby(['latitude','longitude'], as_index = False).count()