I know read csv file in datatable is much faster than pandas DataFrame.
However, in my case
I have several csv files and i have to append one by one all of them.
So i am doing append all of these pd.read_csv(file) to empty DataFrame.
Will it be faster read csv file with datatable and append it to empty datatble
and then finally convert final datatable to csv?
So i want to know the fastest way to append csv file except pandas DataFrame