gpt4 book ai didi

python - 如何在python数据框中找到列的最大值

转载 作者:太空狗 更新时间:2023-10-29 21:33:32 25 4
gpt4 key购买 nike

我在 pyspark 中有一个数据框。在这个数据框中,我有一个名为 id 的列,它是唯一的。

现在我想在数据框中找到 id 列的 maximum 值。

我试过如下

df['id'].max()

但出现以下错误

TypeError: 'Column' object is not callable

请告诉我如何找到数据框中列的最大值

In the answer by @Dadep the link gives the correct answer

最佳答案

如果您使用的是 pandas .max() 将起作用:

>>> df2=pd.DataFrame({'A':[1,5,0], 'B':[3, 5, 6]})
>>> df2['A'].max()
5

否则,如果它是一个 spark 数据框:

Best way to get the max value in a Spark dataframe column

关于python - 如何在python数据框中找到列的最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43924686/

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