PHP前端开发

使用数据帧一列中的字符串来引用另一列中的值

百变鹏仔 1天前 #Python
文章标签 字符串
问题内容

尝试使用数据帧(占位符)中的列中的值来引用同一数据帧中的特定列...想知道这是否可能。下面的输入和输出示例:

输入:

ID123占位符标题>92349231294222038411230438102919453243803123493表>

输出:

ID123占位符决赛标题>923492312942212_ID2038411230438102911230_ID9453243803123493349_ID表>

任何帮助将不胜感激!


正确答案


尝试:

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)