gpt4 book ai didi

python - 如何用 pandas 找到一列的最大值?

转载 作者:行者123 更新时间:2023-12-01 00:07:22 25 4
gpt4 key购买 nike

我有一个包含 40 列和 1500 行的表。我想找到第 30-32 个(3 列)中的最大值。如何做呢?我想返回这3列中的最大值以及数据帧的索引。

print(Max_kVA_df.iloc[30:33].max())

enter image description here

最佳答案

您好,您可以引用这个示例

import pandas as pd

df=pd.DataFrame({'col1':[1,2,3,4,5],
'col2':[4,5,6,7,8],
'col3':[2,3,4,5,7]
})

print(df)

#print(df.iloc[:,0:3].max())# Mention range of the columns which you want, In your case change 0:3 to 30:33, here 33 will be excluded
ser=df.iloc[:,0:3].max()
print(ser.max())

输出

8

关于python - 如何用 pandas 找到一列的最大值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59875481/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com