Export data

To files

Export.to_csv(filepath: str, index: bool = False, **kwargs)

Write the main dataframe to a csv file

Parameters:
  • filepath (str) – path of the file to save
  • index – [description], defaults to False
  • index – bool, optional
  • *args – arguments to pass to pd.to_csv
Example:

ds.to_csv_("myfile.csv", header=false)

Export.to_excel(filepath: str, title: str)

Write the main dataframe to an Excell file

Parameters:
  • filepath (str) – path of the Excel file to write
  • title (str) – Title of the stylesheet
Example:

ds.to_excel_("./myfile.xlsx", "My data")

Export.to_hdf5(filepath: str)

Write the main dataframe to Hdf5 file

Parameters:filepath (str) – path where to save the file
Example:ds.to_hdf5_("./myfile.hdf5")