0

I am using a third party tool to extract vast amounts of time-series data (to be analysed within python). The options are to save this as a text file or excel file. Which is the more efficient route speed-wise?

jcloudz1
  • 59
  • 6

1 Answers1

0

You can have a look here: Faster way to read Excel files to pandas dataframe

Here it is also mentioned that csv is fater, so the text file should be the better option.

PV8
  • 5,799
  • 7
  • 43
  • 87