In many functions of DataFrame.to_foo I can indicate that I do not want to write an index
>>> help(df.to_csv) Write DataFrame to a comma-separated values (csv) file Parameters ---------- ... index : boolean, default True Write row names (index) ...
Is there similar functionality for DataFrame.to_hdf ? I would not want to store the index in the PyTables table.
source share