Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions geoinference/simulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,10 @@ def run_pipeline(
df = collect(pop, pipe, cfg, rng)
if len(df) < cfg.n_itineraries:
continue
# se_method is deliberately withheld: the point of the sweep is that
# `estimate` computes every SE from one fit and `_method_ci` picks
# afterwards, so the methods are compared on identical draws.
# preen: allow-dropped-arg
res = estimate(
df,
"n_women",
Expand Down Expand Up @@ -615,6 +619,10 @@ def evaluate_scene(
"timestamp": ts,
}
)
# se_method is deliberately withheld: the point of the sweep is that
# `estimate` computes every SE from one fit and `_method_ci` picks
# afterwards, so the methods are compared on identical draws.
# preen: allow-dropped-arg
res = estimate(
frames,
"n_women",
Expand Down