I wonder how to add new DataFrame data onto the end of an existing csv file? The to_csv doesn\'t mention such functionality.
DataFrame
to_csv
Thank to Andy, the complete solution:
f = open(filename, 'a') # Open file as append mode df.to_csv(f, header = False) f.close()