From fcd1a6b321ba4f10214e49a5a78278d7232396b8 Mon Sep 17 00:00:00 2001 From: rstiskalek Date: Mon, 3 Jul 2023 15:37:22 +0100 Subject: [PATCH] Remove comments --- scripts_plots/plot_match.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts_plots/plot_match.py b/scripts_plots/plot_match.py index 16f5acd..5601088 100644 --- a/scripts_plots/plot_match.py +++ b/scripts_plots/plot_match.py @@ -608,11 +608,8 @@ def plot_mass_vs_expected_mass(nsim0, min_overlap=0, max_prob_nomatch=1): mu = numpy.log10(mu) prob_nomatch = numpy.nanmedian(prob_nomatch, axis=1) - # bins = numpy.arange(numpy.min(mass), numpy.max(mass), 0.2) mask = numpy.isfinite(mass) & numpy.isfinite(mu) mask &= (prob_nomatch < max_prob_nomatch) - # stat_x, stat_mu, stat_std = plt_utils.binned_trend( - # mass[mask], mu[mask], 1 - prob_nomatch[mask], bins) with plt.style.context(plt_utils.mplstyle): fig, axs = plt.subplots(ncols=3, figsize=(3.5 * 2, 2.625))