now the table of configs is saved to a tsv file

work related to [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=4171]
This commit is contained in:
Guillaume Raffy 2025-10-23 17:24:39 +02:00
parent f34bb3965d
commit 99c1472f80
1 changed files with 1 additions and 0 deletions

View File

@ -291,6 +291,7 @@ def plot_configs(configs: List[Config], xaxis_def: ConfigAxisDef, yaxis_def: Con
logging.info('\n' + df.to_string(index=False)) logging.info('\n' + df.to_string(index=False))
if figure_file_path: if figure_file_path:
plt.savefig(figure_file_path) plt.savefig(figure_file_path)
df.to_csv(figure_file_path.with_suffix('.tsv'), sep='\t', index=False)
else: else:
plt.show() plt.show()