如何在熊猫数据框中列出唯一组合

时间:2018-08-11 10:01:19

标签: python python-3.x pandas

我在带有列的熊猫中有数据框。我只想列出唯一的组合。怎么办?

**Input**

data[['Month','Ratio']]

Month  Ratio
3      0.7169653 
3      0.7169653      
3      0.7169653
6      0.6789213
6      0.6789213
7      0.2345671
7      0.2345671
7      0.2345671
7      0.2345671
12     0.5623451
12     0.5623451
12     0.5623451
1      0.9808901


**Expected Output**

Month  Ratio
3      0.7169653 
6      0.6789213
7      0.2345671
12     0.5623451
1      0.9808901

如何在python中做到这一点

1 个答案:

答案 0 :(得分:0)

我使用了 drop_duplicates() 功能

 Month_unique= data[['Month','Month_Ontime_Delivery_Ratio']].drop_duplicates()

这解决了问题。