In the hubEnsembles manuscript, we have a plot of quantile average and linear pool ensembles from the incident example data (Figure 5), where the median values are used as the point estimate. However, linear_pool() doesn't return results for median output type (I think), so I ended up having to add this clunky few lines of code, where I pull output_type_id == 0.5, rename the output_type to "median" and append it to the end of the linear_pool results.
In the hubEnsembles manuscript, we have a plot of quantile average and linear pool ensembles from the incident example data (Figure 5), where the median values are used as the point estimate. However,
linear_pool()
doesn't return results formedian
output type (I think), so I ended up having to add this clunky few lines of code, where I pulloutput_type_id == 0.5
, rename theoutput_type
to"median"
and append it to the end of thelinear_pool
results.