pymrio.IOSystem.save

IOSystem.save(path, table_format='txt', sep='\t', float_format='%.12g')

Saving the system to path

Parameters
  • path (pathlib.Path or string) – path for the saved data (will be created if necessary, data within will be overwritten).

  • table_format (string) –

    Format to save the DataFrames:

    • ’pkl’Binary pickle files,

      alias: ‘pickle’

    • ’parquet’: Parquet format

      alias: ‘par’

    • ’txt’ : Text files (default), alias: ‘text’, ‘csv’, ‘tsv’

sepstring, optional

Field delimiter for the output file, only for txt files. Default: tab (’ ‘)

float_formatstring, optional

Format for saving the DataFrames, only for txt files. default = ‘%.12g’