gpt4 book ai didi

python - 将 DTM 转换为文本

转载 作者:行者123 更新时间:2023-12-01 09:18:21 26 4
gpt4 key购买 nike

我想改造以下 DTM

pd.DataFrame({"ID": [1,2,3,4,5],
"t1": [0,0,1,1,0],
"t2": [1,1,0,0,0],
"t3": [1,0,1,0,0],
"t4": [0,0,0,0,0]})

到此 DF

pd.DataFrame({"ID": [1,2,3,4,5],
"text": ["t2, t3", "t2", "t1, t3", "t1", ""]})
>> 1 t2, t3
2 t2
3 t1, t3

我的尝试是以下脚本

for col in df.columns: df = np.where(df[col] == 1, col, "")
df.apply(lambda x: " ".join(x), axis=1).str.split().apply(lambda x: ", ".join(x))

但我想知道是否有更Pythonic的方法来做到这一点

最佳答案

使用DataFrame.dot过滤列为 filter或按 iloc 的位置:

df1 = df.filter(like='t')

#df1 = df.iloc[:, 1:]
df = df[['ID']].join(df1.dot(df1.columns + ', ').str[:-2].rename('new'))
print (df)
ID new
0 1 t2, t3
1 2 t2
2 3 t1, t3
3 4 t1
4 5

或者通过set_index :

df1 = df.set_index('ID')
df = df1.dot(df1.columns + ', ').str[:-2].reset_index(name='new')
print (df)
ID new
0 1 t2, t3
1 2 t2
2 3 t1, t3
3 4 t1
4 5

关于python - 将 DTM 转换为文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51026819/

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