使用数据帧一列中的字符串来引用另一列中的值
问题内容
尝试使用数据帧(占位符)中的列中的值来引用同一数据帧中的特定列...想知道这是否可能。下面的输入和输出示例:
输入:
输出:
任何帮助将不胜感激!
正确答案
尝试:
df["final"] = df.apply(lambda x: str(x[str(x["placeholder"])]) + "_id", axis=1)print(df)
打印:
id 1 2 3 placeholder final0 9234 923 12 942 2 12_id1 203841 1230 438 1029 1 1230_id2 94532 4380 312 349 3 349_id
如果列的类型为整数,请删除内部 str():
df["final"] = df.apply(lambda x: str(x[x["placeholder"]]) + "_ID", axis=1)