gpt4 book ai didi

python - Pandas Dataframe 迭代行

转载 作者:行者123 更新时间:2023-12-02 09:53:53 24 4
gpt4 key购买 nike

我有一个数据框,其中 X 和 Y 是细胞坐标,mRNA 是每个细胞的 mRNA 数量。

        ID        X        Y  mRNA
0 0 149.492 189.153 0
1 1 115.084 194.082 2
2 2 135.331 194.831 7
3 3 136.965 184.493 2
4 4 124.025 190.069 1
... ... ... ... ...
2410 2410 452.596 256.313 0
2411 2411 196.448 333.959 46
2412 2412 190.779 318.418 71
2413 2413 202.941 335.446 37
2414 2414 254.967 369.431 13

目前我正在尝试应用这个公式,但我无法真正使其发挥作用。理想情况下我想做这个操作:

For ID 0: sqrt[((X0-X1)^2)+((Y0-Y1)^2)]
sqrt[((X0-X2)^2)+((Y0-Y2)^2)]
............
sqrt[((X0-Xn)^2)+((Y0-Yn)^2)]

(where n is the last cell ID in my csv file 2414)

然后,必须对所有单元格对 ID 1 执行相同的操作,然后对 ID 2 执行相同的操作,依此类推。

import pandas as pd
import numpy as np

df=pd.read_csv('Detailed2.csv', sep=',')
print(df)

df1 = np.sqrt(((df['X'].sub(df['X']))^2).add((df['Y'].sub(df['Y']))^2)).to_frame('col')
print(df1)

此代码不起作用。

最佳答案

用途:

for Id in df['ID']:
df[f'new_col_{Id}']=( df[['X','Y']].sub(df.loc[df['ID'].eq(Id),['X','Y']].values)
.pow(2)
.sum(axis=1)
.pow(1/2) )

print(df)
<小时/>

输出

          ID        X        Y  mRNA   new_col_0   new_col_1   new_col_2  \
0 0 149.492 189.153 0 0.000000 34.759251 15.256920
1 1 115.084 194.082 2 34.759251 0.000000 20.260849
2 2 135.331 194.831 7 15.256920 20.260849 0.000000
3 3 136.965 184.493 2 13.365677 23.889895 10.466337
4 4 124.025 190.069 1 25.483468 9.800288 12.267937
2410 2410 452.596 256.313 0 310.455311 343.201176 323.167320
2411 2411 196.448 333.959 46 152.228918 161.819886 151.960153
2412 2412 190.779 318.418 71 135.698403 145.565016 135.455628
2413 2413 202.941 335.446 37 155.751204 166.441079 156.024647
2414 2414 254.967 369.431 13 208.866304 224.308996 211.655221

new_col_3 new_col_4 new_col_2410 new_col_2411 new_col_2412 \
0 13.365677 25.483468 310.455311 152.228918 135.698403
1 23.889895 9.800288 343.201176 161.819886 145.565016
2 10.466337 12.267937 323.167320 151.960153 135.455628
3 0.000000 14.090258 323.698997 160.867375 144.332436
4 14.090258 0.000000 335.182293 161.088246 144.670530
2410 323.698997 335.182293 0.000000 267.657802 269.082093
2411 160.867375 161.088246 267.657802 0.000000 16.542679
2412 144.332436 144.670530 269.082093 16.542679 0.000000
2413 164.741133 165.415257 261.896259 6.661097 20.925272
2414 219.377610 222.073264 227.712326 68.430521 81.990399

new_col_2413 new_col_2414
0 155.751204 208.866304
1 166.441079 224.308996
2 156.024647 211.655221
3 164.741133 219.377610
4 165.415257 222.073264
2410 261.896259 227.712326
2411 6.661097 68.430521
2412 20.925272 81.990399
2413 0.000000 62.142457
2414 62.142457 0.000000

使用 itertuples @Trenton McKinney 和 @Alexander Cécile 解决方案(推荐)

for row in df.itertuples():
df[f'id_{row.Index}'] = df[['X', 'Y']].sub([row.X, row.Y], axis='columns').pow(2).sum(axis=1).pow(1/2).round(2)

应用的解决方案

df.join(
df['ID'].apply(lambda x:
df[['X','Y']].sub(df.loc[df['ID'].eq(x),['X','Y']].values)
.pow(2)
.sum(axis=1)
.pow(1/2))
.add_prefix('new_col_')
)

请记住,您不能使用重复的 ID

关于python - Pandas Dataframe 迭代行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59365842/

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