Skip to content

Commit

Permalink
Formatting comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Jday7879 committed Dec 17, 2024
1 parent d3d409c commit 84d95db
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions mbs_results/estimation/apply_estimation.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,11 @@ def apply_estimation(
census_df["calibration_factor"] = 1
census_df["is_sampled"] = True
census_df["is_census"] = True
# is_census: bool, to distinguish fully sampled (i.e. census) strata from non-census strata. Used in outlier detection so census strata are not winsorised.
# is_sampled: bool. This is used to distinguish sampled refs from non-sampled refs in population
# is_census: bool, to distinguish fully sampled (i.e. census) strata from
# non-census strata. Used in outlier detection so census strata are
# not winsorised.
# is_sampled: bool. This is used to distinguish sampled refs from non-sampled
# refs in population

non_census_df = estimation_data[
~(
Expand Down

0 comments on commit 84d95db

Please sign in to comment.