当列包含特定文本时,将所有列值连接成 1 列

Concatenate all columns values into 1 column when columns contain certain text

我想创建一个名为“part_1_total”的新列,它将包含字符串 'Part 1' 的列的所有值粘贴在一起(对下一组列也应该这样做包含 'Part 2' ,第 3 部分等...)

有没有快速的方法?

我的尝试:

# Attempt 1 yields 0 as it is to sum up numbers 
def calc_total(df,string='Part 1'):
    return df.loc[:,[x for x in df.columns if string in x]].sum(axis=1)

# Attempt number 2 pastes the column names into all the cells
asos['part_1_total'] = ''.join(asos.loc[:,[x for x in asos.columns if 'Part 1' in x]])


我认为这只是一部分列的 str 连接。

import pandas as pd
import numpy as np

df = pd.DataFrame(
    {'Part 1 - Body':[np.nan, '100% Other Material'],
     'Part 2 - Back':['43% Nickle', '20% Aluminum'],
     'Part 1 - Lining':['93% Cotton', '23% Spandex']}
    )

df['part_1_total'] = df[[c for c in df.columns if 'Part 1' in c]].apply(
        lambda x: x.str.cat(sep=', '), axis=1)

结果数据帧:

         Part 1 - Body Part 2 - Back Part 1 - Lining                      part_1_total
0                  NaN    43% Nickle      93% Cotton                        93% Cotton
1  100% Other Material  20% Aluminum     23% Spandex  100% Other Material, 23% Spandex

您可以通过调整 sep 参数来调整字符串的连接方式(使用逗号、space 等)。有关 pandas 中连接字符串列的更多信息,请参阅 this answer。您可以在 apply 中使用 ''.join 但这似乎不适用于 NaN。