From af52e91f2a02d4a0fcf8892e57d93334642f9f83 Mon Sep 17 00:00:00 2001 From: Armaan Abraham Date: Mon, 5 Feb 2024 17:02:57 -0800 Subject: [PATCH] small fix --- ddmc/figures/figureM2.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ddmc/figures/figureM2.py b/ddmc/figures/figureM2.py index 9f07c8e0..5746a5db 100644 --- a/ddmc/figures/figureM2.py +++ b/ddmc/figures/figureM2.py @@ -39,17 +39,17 @@ def makeFigure(): dataW_2C = run_repeated_imputation( "Binomial", weights=weights, n_clusters=[2] * len(weights), n_runs=1 ) - plot_imputation_errs(ax[4], dataW_2C, "Weight", legend=False) + plot_imputation_errs(ax[4], dataW_2C, "Weight") dataW_20C = run_repeated_imputation( "Binomial", weights=weights, n_clusters=[20] * len(weights), n_runs=1 ) - plot_imputation_errs(ax[5], dataW_20C, "Weight", legend=False) + plot_imputation_errs(ax[5], dataW_20C, "Weight") dataW_40C = run_repeated_imputation( "Binomial", weights=weights, n_clusters=[40] * len(weights), n_runs=1 ) - plot_imputation_errs(ax[6], dataW_40C, "Weight", legend=False) + plot_imputation_errs(ax[6], dataW_40C, "Weight") return f