sensortoolkit.calculate._regression_stats.dataframe_to_csv
- dataframe_to_csv(obj, parent_path, filename, **kwargs)[source]
Save a pandas DataFrame to a comma-separated value file.
- Parameters
obj (pandas DataFrame) – The DataFrame to write to a .csv file.
parent_path (str) – The path to the folder where the file will be saved.
filename (str) – The name of the resulting .csv file.
**kwargs (dict) – Keyword arguments passed to the pandas
to_csv()
method.
- Returns
None.