export_report_to_csv#

PostProcessor.export_report_to_csv(project_dir, plot_name, uniform=False, start=None, end=None, step=None, use_trace_number_format=False)[source]#

Export the 2D Plot data to a CSV file.

This method leaves the data in the plot (as data) as a reference for the Plot after the loops.

Parameters:
project_dirstr

Path to the project directory. The csv file will be plot_name.csv.

plot_namestr

Name of the plot to export.

uniformbool, optional

Whether the export uniform points to the file. The default is False.

startstr, optional

Start range with units for the sweep if the uniform parameter is set to True.

endstr, optional

End range with units for the sweep if the uniform parameter is set to True.

stepstr, optional

Step range with units for the sweep if the uniform parameter is set to True.

use_trace_number_formatbool, optional

Whether to use trace number formats. The default is False.

Returns:
str

Path of exported file.

References

>>> oModule.ExportReportDataToFile
>>> oModule.ExportToFile
>>> oModule.ExportUniformPointsToFile