export_results#
- Interaction.export_results(file_path: str, continue_if_partial: bool = False) None#
Export the results for this interaction to a file.
Every solved radio tuple in the current interaction (rows = victims, columns = each individual aggressor plus the leftmost
N to 1multi-aggressor cell) is written tofile_path. The file is overwritten if it exists. The CSV is preceded by a#-prefixed header that captures the current state of the Result Categorization filter toggles.- Parameters:
- file_path
str The path to the file to export to.
- continue_if_partialbool,
optional When
False(default), this method raisesRuntimeErrorif any tuple in the selection has not been simulated. WhenTrue, the export proceeds with whatever simulated rows are available.
- file_path
- Raises:
RuntimeErrorIf the export fails.