尝试使用数据帧(占位符)中的列中的值来引用同一数据帧中的特定列...想知道这是否可能。下面的输入和输出示例:
输入:
输出:
任何帮助将不胜感激!
尝试:
df["final"] = df.apply(lambda x: str(x[str(x["placeholder"])]) + "_id", axis=1) print(df)
打印:
id 1 2 3 placeholder final 0 9234 923 12 942 2 12_id 1 203841 1230 438 1029 1 1230_id 2 94532 4380 312 349 3 349_id
如果列的类型为整数,请删除内部 str()
:
df["final"] = df.apply(lambda x: str(x[x["placeholder"]]) + "_ID", axis=1)
以上是使用数据帧一列中的字符串来引用另一列中的值的详细内容。更多信息请关注PHP中文网其他相关文章!