I am using pandas to join several huge csv files using HDFStore. I'm merging all the other tables to a base table, base
. Right now I create a new table in the HDFStore for the output of each merge, which I call temp
. Then I delete the old base table. Finally, I copy temp
to base
and start the process over again on the next table I need to join.
This would be much more efficient if I could simply rename temp
to base
. Is this possible?