I have a dataframe with ~7 million lines and 18 columns.
What is the fastest library that consumes less time?
Right now I am writing the dataframe using:
df.to_csv('file.csv', header=True, index=False)
And it is taking me ~3 hours.
The file has ~800 MB.
Is there a faster method/library to speed up the writing process?