Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

confidence interval text + histogram table #211

Merged
merged 11 commits into from
Jan 8, 2025
Prev Previous commit
Next Next commit
merge
  • Loading branch information
mccalluc committed Jan 7, 2025
commit fcd52fc9f031fed6b2fb8abb95859a676fa4fb96
6 changes: 5 additions & 1 deletion dp_wizard/app/components/column_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,11 @@ def data_frame():
@render.plot
def column_plot():
accuracy, histogram = accuracy_histogram()

s = "s" if contributions > 1 else ""
title = (
f"Simulated {name}: normal distribution, "
f"{contributions} contribution{s} / invidual"
)
return plot_histogram(
histogram,
error=accuracy,
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.