从csv列中提取最频繁的组合

时间:2018-06-14 01:37:37

标签: python python-3.x pandas numpy

我一直试图从csv文件中为Start和End工作站提供最频繁的组合,我遇到的问题是我正在拉动所有这些组合。当试图拉出最合并的那个时,我只得到一个数字?

Most frequent start and end station:  <bound method Series.mode of Start Station                 End Station

2112 W Peterson Ave           Warren Park East                    8
                          Clark St & Berwyn Ave               5
                          Washtenaw Ave & Lawrence Ave        4

以下是我目前正在输出的内容片段:

Contain

1 个答案:

答案 0 :(得分:1)

IIUC

df.groupby(['Start Station','End Station']).size().nlargest(1)