in src/mozanalysis/frequentist_stats/linear_models/functions.py [0:0]
def _make_univariate_output(alphas: list[float]) -> Estimates:
str_quantiles = ["0.5"]
for alpha in alphas:
str_quantiles.extend(_stringify_alpha(alpha))
res = pd.Series(index=sorted(str_quantiles) + ["mean"], dtype="float")
return res