From 99c1472f801110a15c1ada27a98ac07951f1473e Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Thu, 23 Oct 2025 17:24:39 +0200 Subject: [PATCH] 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] --- concho/procs_chooser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/concho/procs_chooser.py b/concho/procs_chooser.py index 932f1a3..d2e7bd4 100644 --- a/concho/procs_chooser.py +++ b/concho/procs_chooser.py @@ -291,6 +291,7 @@ def plot_configs(configs: List[Config], xaxis_def: ConfigAxisDef, yaxis_def: Con logging.info('\n' + df.to_string(index=False)) if figure_file_path: plt.savefig(figure_file_path) + df.to_csv(figure_file_path.with_suffix('.tsv'), sep='\t', index=False) else: plt.show()