write_lzma_csv

write_lzma_csv(df, path, sep='\\t', index=False, **kwargs)[source]

Write a dataframe as an lzma-compressed file.

Parameters:
  • df (pandas.DataFrame) – A dataframe

  • path (Union[str, Path]) – The path to the resulting LZMA compressed dataframe file

  • sep – The separator in the dataframe. Overrides Pandas default to use a tab.

  • index (bool) – Should the index be output? Overrides the Pandas default to be false.

  • kwargs – Additional kwargs to pass to get_df_io() and transitively to pandas.DataFrame.to_csv().