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
lower=nominal_intensities.quantile(q=self.projection_controls.LOWER_PERCENTILE, axis='index', numeric_only=False)
upper=nominal_intensities.quantile(q=self.projection_controls.UPPER_PERCENTILE, axis='index', numeric_only=False)
winsorized: pd.DataFrame = nominal_intensities.clip(
lower=lower,
upper=upper,
axis='columns'
)
if ITR.HAS_UNCERTAINTIES:
# FIXME: the clipping process can properly introduce uncertainties. The low and high values that are clipped could be
# replaced by the clipped values +/- the lower and upper percentile values respectively.
The text was updated successfully, but these errors were encountered:
In the _winsorize function (data_warehouse.py):
The text was updated successfully, but these errors were encountered: