gpt4 book ai didi

python - Pandas 数据框定位

转载 作者:行者123 更新时间:2023-12-01 03:20:04 25 4
gpt4 key购买 nike

我有一个 pandas DataFrame,我正在寻找其中的最小值。

print(df.loc[df['Price'].idxmin()])

它正在工作,我可以打印整个“行”,这是结果:

Country              Switzerland
City Zurich
Airport Zurich
Carrier Vueling Airlines
Type Direct
Date 2017-09-05T00:00:00
Price 12360
AirportId ZRH
Name: 97, dtype: object

Process finished with exit code 0

如何仅打印 AirportId 列?

谢谢!

最佳答案

通过过滤:

print(df.loc[df['Price'].idxmin()]['Airport'])

如果您打算将数据写入该单元格,请继续使用loc:

df.loc[df['Price'].idxmin(),'Airport']

关于python - Pandas 数据框定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42012289/

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