From 9e8f0de76973f32bd232299dba0905b28a9e6f7c Mon Sep 17 00:00:00 2001 From: Iva Laginja Date: Thu, 11 Feb 2021 11:34:10 +0100 Subject: [PATCH] make sure empirical mean and empirical stddev lines have same color --- pastis/plotting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pastis/plotting.py b/pastis/plotting.py index 2352a10e..98e6cb50 100644 --- a/pastis/plotting.py +++ b/pastis/plotting.py @@ -643,7 +643,7 @@ def plot_monte_carlo_simulation(random_contrasts, out_dir, c_target, segments=Tr if plot_empirical_stats: empirical_mean = np.mean(random_contrasts) empirical_stddev = np.std(random_contrasts) - plt.axvline(empirical_mean, c='dimgrey', ls='-.', lw='3') + plt.axvline(empirical_mean, c='maroon', ls='-.', lw='3') plt.axvline(empirical_mean + empirical_stddev, c='maroon', ls=':', lw=4, label='Empirical stddev') plt.axvline(empirical_mean - empirical_stddev, c='maroon', ls=':', lw=4) if stddev or plot_empirical_stats: