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 1 multi-aggressor cell) is written to file_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_pathstr

The path to the file to export to.

continue_if_partialbool, optional

When False (default), this method raises RuntimeError if any tuple in the selection has not been simulated. When True, the export proceeds with whatever simulated rows are available.

Raises:
RuntimeError

If the export fails.