繁体   English   中英

循环中来自 dataframe 列的连接字符串(Python 3.8)

[英]Concat strings from dataframe columns in a loop (Python 3.8)

假设我有一个包含字符串和数字的 DataFrame "DS_df"。 “LAultimateparentcountry”、“borrowerultimateparentcountry”和“tot”三列形成关系。

如何从这三列中创建一个字典(对于整个数据集,而顺序很重要)? 我需要将这两个国家作为一个变量访问,而 tot 作为另一个变量。 到目前为止,我已经尝试过下面的代码,但这只会给我一个包含单独项目的列表。 出于某种原因,我也无法 get.join 工作,因为 df 很大(+900k 行)。

new_list =[]

for i, row in DS_df.iterrows():
    new_list.append(row["LAultimateparentcountry"])
    new_list.append(row["borrowerultimateparentcountry"])
    new_list.append(row["tot"])

首选结果是字典,例如,我可以在其中访问“Germany_Switzerland”:56708。 非常感谢任何帮助或建议。

干杯

你可以这样使用字典:

countries_map = {}

for index, row in DS_df.iterrows():
    curr_rel = f'{row["LAultimateparentcountry"]}_{row["borrowerultimateparentcountry"]}'
    countries_map[curr_rel] = row["tot"]

如果您不希望不运行现有的键值

(并使用他们的首次亮相):

countries_map = {}
for index, row in DS_df.iterrows():
    curr_rel = f'{row["LAultimateparentcountry"]}_{row["borrowerultimateparentcountry"]}'
    if curr_rel not in countries_map.keys():
        countries_map[curr_rel] = row["tot"]

在 dataframe 上执行操作时,最好按列而不是按行来考虑解决方案。

如果您的 dataframe 有 900k+ 行,那么在 dataframe 上应用矢量化操作可能是一个不错的选择。

以下是两个解决方案:

使用 pd.Series + to_dict():

pd.Series(DS_df.tot.values, index=DS_df.LAultimateparentcountry.str.cat(DS_df.borrowerultimateparentcountry, sep="_")).to_dict()

使用 zip() + dict():

dict(zip(DS_df.LAultimateparentcountry.str.cat(DS_df.borrowerultimateparentcountry, sep="_"), DS_df.tot))

测试 Dataframe:

    DS_df = DataFrame({
        'LAultimateparentcountry':['India', 'Germany', 'India'],
        'borrowerultimateparentcountry':['France', 'Ireland', 'France'],
        'tot':[56708, 87902, 91211]
    })
DS_df


LAultimateparentcountry borrowerultimateparentcountry   tot
0   India   France  56708
1   Germany Ireland 87902
2   India   France  91211

Output 两种解决方案:

{'India_France': 91211, 'Germany_Ireland': 87902}

如果形成的键有重复,那么值将被更新。

哪种解决方案性能更高?

简短的回答 -
zip() + dict() # 如果行是大约。 100万以下
pd.Series + to_dict() # 如果行是大约。 100万以上

长答案 - 以下是测试:

用 30 行和 3 列测试

压缩()+字典()

%timeit dict(zip(DS_df.LAultimateparentcountry.str.cat(DS_df.borrowerultimateparentcountry, sep="_"), DS_df.tot))

297 µs ± 21 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)

pd.Series + to_dict():

%timeit pd.Series(DS_df.tot.values, index=DS_df.LAultimateparentcountry.str.cat(DS_df.borrowerultimateparentcountry, sep="_")).to_dict()

506 µs ± 35.6 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)

使用 6291456 行和 3 列进行测试

pd.Series + to_dict()

%timeit pd.Series(DS_df.tot.values, index=DS_df.LAultimateparentcountry.str.cat(DS_df.borrowerultimateparentcountry, sep="_")).to_dict()
3.92 s ± 77.6 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)

zip + dict()

%timeit dict(zip(DS_df.LAultimateparentcountry.str.cat(DS_df.borrowerultimateparentcountry, sep="_"), DS_df.tot))
3.97 s ± 226 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM