gpt4 book ai didi

python-3.x - Python Pandas - 根据索引、列使用字典更新行

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

我有一个包含空列的数据框和一个相应的字典,我想根据索引列更新空列:

import pandas as pd    
import numpy as np

dataframe = pd.DataFrame([[1, 2, 3], [4, 5, 6], [7, 8, 9], [4, 6, 2], [3, 4, 1]])
dataframe.columns = ['x', 'y', 'z']
additional_cols = ['a', 'b', 'c']

for col in additional_cols:
dataframe[col] = np.nan

x y z a b c
0 1 2 3
1 4 5 6
2 7 8 9
3 4 6 2
4 3 4 1

for row, column in x.iterrows():
#caluclations to return dictionary y
y = {"a": 5, "b": 6, "c": 7}
df.loc[row, :].map(y)

基本上在使用列 x、y、z 执行计算后,我想更新同一行的 a、b、c 列 :)

最佳答案

我可以使用这样的函数,但就 Pandas 库和 DataFrame 对象的方法而言,我不确定......

def update_row_with_dict(dictionary, dataframe, index):
for key in dictionary.keys():
dataframe.loc[index, key] = dictionary.get(key)

关于python-3.x - Python Pandas - 根据索引、列使用字典更新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42871723/

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