两列数据框python熊猫最大

时间:2019-06-30 18:16:28

标签: python pandas dataframe max

我在数据框中有两列,其中一列是字符串(国家/地区),另一列是与每个国家/地区相关的整数。我怎么问哪个国家的python熊猫价值最大?

1 个答案:

答案 0 :(得分:1)

设置

df = pd.DataFrame(dict(Num=[*map(int, '352741845')], Country=[*'ABCDEFGHI']))

df

   Num Country
0    3       A
1    5       B
2    2       C
3    7       D
4    4       E
5    1       F
6    8       G
7    4       H
8    5       I

idxmax

df.loc[[df.Num.idxmax()]]

   Num Country
6    8       G

nlargest

df.nlargest(1, columns=['Num'])

   Num Country
6    8       G

sort_valuestail

df.sort_values('Num').tail(1)

   Num Country
6    8       G