gpt4 book ai didi

python - 获取选定值的索引

转载 作者:太空宇宙 更新时间:2023-11-04 02:16:44 25 4
gpt4 key购买 nike

我有三个数据框。 一: 房子的基本地理信息,我想用额外的数据填充。 二: 从房屋(行)到四个来源之一(列)的距离。 三:从房子到源头对应的角度(0-360度)。

一:

           X          Y    ...      Area_Cat        UID
0 ...
1 142862.10 391169.10 ... 1 67321NY15
2 143687.10 391063.10 ... 1 67321NY4
3 144728.45 390877.88 ... 1 67321NY6
4 144842.32 391811.89 ... 1 67321NY7
5 145386.77 392740.08 ... 1 67321NY147

[5 rows x 11 columns]

两个:

         1        2        3        4
1 1807.04 1894.98 2135.75 2396.95
2 1801.63 1594.55 1606.38 1744.48
3 2323.27 1835.68 1485.06 1317.95
4 1692.7 1084.16 586.009 400.732
5 1880.35 1293.06 842.389 675.357

三:

         1        2        3        4
1 201.011 220.827 236.11 245.66
2 174.359 195.045 216.163 231.166
3 148.368 160.013 176.392 193.942
4 128.085 136.861 159.281 210.549
5 93.5344 83.9145 63.1797 30.3033

我已经成功地使用以下方法将最短距离添加到数据框:

    for index, row in two.iterrows():
one.loc[index,'Distance'] = min(row)

结果:

           X          Y     ...              UID     Distance
0 ...
1 142862.10 391169.10 ... 67321NY15 1807.043447
2 143687.10 391063.10 ... 67321NY4 1594.554866
3 144728.45 390877.88 ... 67321NY6 1317.947638
4 144842.32 391811.89 ... 67321NY7 400.732398
5 145386.77 392740.08 ... 67321NY147 675.356557

[5 rows x 12 columns]

现在我想添加相应的角度以及列名 Orientation。我的想法是找到 min(row) 值的列和行索引,并使用它们用第三个数据框中的值填充新列。我找到了 idxmin() 选择器,但几次尝试都失败了。你能帮帮我吗?

期望的结果:

           X          Y     ...              UID     Distance  Orientation
0 ...
1 142862.10 391169.10 ... 67321NY15 1807.043447 201.011
2 143687.10 391063.10 ... 67321NY4 1594.554866 195.045
3 144728.45 390877.88 ... 67321NY6 1317.947638 193.942
4 144842.32 391811.89 ... 67321NY7 400.732398 210.549
5 145386.77 392740.08 ... 67321NY147 675.356557 30.3033

[5 rows x 12 columns]

最佳答案

我认为使用 idxmin 并从 Two 获取最小索引是个好主意!
为了使用索引从其他数据帧(例如 Three)获取数据,我使用了 pd.DataFrame.valueslist comprehensionzip

# get the indexes of min values from Two
ix = two.idxmin(axis=1)
# result:
# ix => [ 1, 2, 4, 4, 4 ]

# get the distance and orientation from Two and Three using the above indexes
_two = [two_val[i] for two_val, i in zip(two.values, ix)]
_three = [three_val[i] for three_val, i in zip(three.values, ix)]
# result:
# _two => [ 1807.043447, 1594.554866, 1317.947638, 400.732398, 675.356557 ]
# _three => [ 201.011, 195.045, 193.942, 210.549, 30.3033 ]

# append the result to One (be careful with the 0 index in One)
one["Distance"] = ””
one.loc[1:, ”Distance”] = _two
one["Orientation"] = ””
one.loc[1:, ”Orientation”] = _three

在这里,我对 Two 使用了相同的方法(使用 Two 的 idxmin 输出获取值),但您原来的方法也适用。

编辑:意识到数据框 One 有第 0 个索引,我在那里附加了一个空字符串

关于python - 获取选定值的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52500069/

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