从DataFrame打印最大元素

时间:2017-11-27 12:56:26

标签: python pandas dataframe

所以我有一个涉及两列的数据集 - 查询号和投诉类型。 我希望找到最多10个投诉类型。 我把投诉分组在一起。 如何根据“投诉类型”添加所有查询号码并找到它们的最大值?

#Finding Major Complaint types
NYC_Complaints = NYC_calls[['Query Number','Complaint Type']]
Complaints = NYC_Complaints.groupby('Complaint Type')

0 个答案:

没有答案