我正在使用自动生成脚本的脚本,该脚本使用 df.apply()如下所示自动生成 完整文件路径 列。
def generate_filepath(row):
all_files = os.listdir(files_dir)
if row['FileName'] not in all_files:
return None
value = os.path.join(files_dir, row['FileName'])
return value
csv_df['FilePath'] = csv_df.apply(generate_filepath, axis=1)
我必须将 files_dir 声明为全局变量,然后在函数中使用它。除了df.apply之外,我还有其他参数可以传递吗? 请为我提供良好的建议
答案 0 :(得分:0)