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
You can also pass the file mode as an argument to the to_csv method
df.to_csv(file_name, header=False, mode = 'a')