You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A new config parameter, calculated_point_estimates was introduced in rail_basePR #29. This parameter defines which point estimates to compute automatically during the estimation stage.
The implementation will likely look similar to what was done for RAIL_flexzboost in PR #34
The following is a rough gist:
ancil_dictionary = dict()
calculated_point_estimates = []
if ‘calculated_point_estimates’ in self.config:
calculated_point_estimates = self.config.calculated_point_estimates
if ‘mode’ in calculated_point_estimates:
ancil_dictionary.update(mode = <mode calculation>)
if ‘mean’ in calculated_point_estimates:
ancil_dictionary.update(mean = <mean calculation>)
if ‘median’ in calculated_point_estimates:
ancil_dictionary.update(median = <median calculation>)
if calculated_point_estimates:
qp_dstn.set_ancil(ancil_dictionary)
The text was updated successfully, but these errors were encountered:
A new config parameter,
calculated_point_estimates
was introduced inrail_base
PR #29. This parameter defines which point estimates to compute automatically during the estimation stage.The implementation will likely look similar to what was done for
RAIL_flexzboost
in PR #34The following is a rough gist:
The text was updated successfully, but these errors were encountered: