save_csv_line

ssapy.io.save_csv_line(file_name, df, sep='\t', dtypes=None)[source][source]

Save a Pandas DataFrame to a CSV file, appending the DataFrame to the file if it exists.

Parameters:
  • file_name (str) – The path to the CSV file.

  • df (DataFrame) – The Pandas DataFrame to save.

  • sep (str) – The delimiter used in the CSV file.

Returns:

None