想知道是否可以使用 pandasto_csv()函数将数据框添加到现有的 csv 文件中。csv 文件具有与加载的数据相同的结构。
可以在 pandas 函数中指定 python 写入模式to_csv。对于附加,它是 ‘a’。
to_csv
就你的情况而言:
df.to_csv('my_csv.csv', mode='a', header=False)
默认模式为“w”。
如果文件最初可能丢失,则可以使用此变体确保在第一次写入时打印标题:
output_path='my_csv.csv' df.to_csv(output_path, mode='a', header=not os.path.exists(output_path))