From 0e200b64dd6869a9572a6fdc012d8e8fd5ce59b3 Mon Sep 17 00:00:00 2001 From: Louis Thibaut Date: Mon, 4 Nov 2024 13:42:45 +0100 Subject: [PATCH] write down the combined noise --- .../data_analysis/python/paper_plots/results_noise_spectrum.py | 1 + 1 file changed, 1 insertion(+) diff --git a/project/data_analysis/python/paper_plots/results_noise_spectrum.py b/project/data_analysis/python/paper_plots/results_noise_spectrum.py index 30d2e6d3..4ddb1b36 100644 --- a/project/data_analysis/python/paper_plots/results_noise_spectrum.py +++ b/project/data_analysis/python/paper_plots/results_noise_spectrum.py @@ -82,6 +82,7 @@ plt.plot(lb[id], 1 / inv_Nb_mean[id], linestyle=linestyle, label= f"DR6 effective noise", color="black") + np.savetxt(f"{noise_dir}/DR6_noise_combined_{spec}.dat", np.transpose([lb, 1 / inv_Nb_mean])) plt.ylim(yrange[spec]) plt.xlim(0, 6000) ax.legend(fontsize=14, loc='center left', bbox_to_anchor=(1, 0.5))