Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
armaan-abraham committed Feb 6, 2024
1 parent 2947481 commit af52e91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ddmc/figures/figureM2.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit af52e91

Please sign in to comment.