How to force a new line when appending to a csv using python pandas .to_csv
当添加到csv时,我的第一行从现有的最后一行开始,而不是新行。
我一直在搜索,但是我只是发现在追加模式下打开csv或在写入csv时使用追加模式的基本用法。我无法理解此处接受的答案(to_csv追加模式未追加到下一个新行),因为它似乎要求在用
1 2 3 4 5 6 7 8 9 | import os def mysave(df,dfpath): # if file does not exist write header if not os.path.isfile(dfpath): df.to_csv(dfpath, index = False) else: # else it exists so append without writing the header df.to_csv(dfpath, mode = 'a', index = False, header = False) mysave(mydf, 'foo.csv') |
我创建了一个非常简单的示例,其foo.csv结构如下:
1 2 3 4 | a b c d 5 1 ah doo 6 2 bah poo 7 2 dah coo |
当我使用函数或以下简单代码时:
1 2 3 4 | import pandas as pd df = pd.read_csv('foo.csv', index_col=False) mydf = df mydf.to_csv('foo.csv', mode='a', index = False, header = False) |
这就是foo.csv的最终结果:
1 2 3 4 5 6 | a b c d 5 1 ah doo 6 2 bah poo 7 2 dah coo5 1 ah doo 6 2 bah poo 7 2 dah coo |
当我尝试添加回车符作为标题时,例如
pandas(正确)忽略了我错误的标题注释,并使用了默认值
1 2 3 4 5 6 | a b c d 5 1 ah doo 6 2 bah poo 7 2 dah cooa b c d 6 2 bah poo 7 2 dah coo |
我有一个类似的问题,经过一番搜索之后,我没有找到任何简单/优雅的解决方案。 对我有用的最小修复是:
1 2 3 4 5 6 | import pandas as pd with open('foo.csv') as f: f.write(' ') mydf.to_csv('foo.csv', index = False, header = False, mode='a') |
如果您的数据框很大,并且想要避免串联,则可以使用
1 2 3 4 | import csv with open('foo.csv','ab') as out: writer=csv.writer(out) writer.writerow(()) |
在函数中或仅在代码中作为代码段。 如果您不在Windows上,则可以避免在打开位置添加" b",而仅用" a"(附加)打开文件
我假设您要将两个数据帧中的另一个添加到单个数据帧中。
使用下面提到的命令使其成为单个命令
然后可以将输出制作成.csv文件