gpt4 book ai didi

python - 返回数据框中两列的最大值( Pandas )

转载 作者:行者123 更新时间:2023-11-28 19:47:11 24 4
gpt4 key购买 nike

我目前有一个数据框,想返回两列(例如 X 和 Y)的最小值。

我试过:

print(df.loc[:, ['X', 'Y']].min())

然而,它打印出:

Control NSAF   -9.851210
Wild NSAF -9.730507
dtype: float64

而我只想要 -9.851210。有没有办法只获得单个最小数量?

谢谢

最佳答案

再添加一个 min

print(df.loc[:, ['X', 'Y']].min().min())

关于python - 返回数据框中两列的最大值( Pandas ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46801367/

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