Skip to content

Commit

Permalink
Fix bootstrap mean default value (#578)
Browse files Browse the repository at this point in the history
The default value for `drop_highest` in the description for the `bootstrap_mean` statistic was outdated, this brings it up to date with current Jetstream behavior.
  • Loading branch information
mikewilli authored Mar 8, 2024
1 parent c73e3d4 commit 21a751f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/deep-dives/jetstream/statistics.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ Supported pretreatments are listed below. Some pretreatments accept parameters,
**Statistics** that Jetstream knows about are listed below. Some statistics accept parameters, which are listed below the name of the statistic.

* `binomial`: Binomial outcome with bootstrapped CIs for differences between branches
* `bootstrap_mean`: Mean with bootstrapped confidence intervals. Removes the top 0.001% of values by default.
* `bootstrap_mean`: Mean with bootstrapped confidence intervals. Removes the top 0.5% of values by default.
* `num_samples`: Number of bootstrap samples to compute. Defaults to 10,000.
* `drop_highest`: Fraction of highest samples to drop. Defaults to 1e-4.
* `drop_highest`: Fraction of highest samples to drop. Defaults to 0.005.
* `count`: A count of rows
* `deciles`: Bootstrapped confidence intervals for differences between branches at deciles
* `num_samples`: Number of bootstrap samples to compute. Defaults to 10,000.
Expand Down

0 comments on commit 21a751f

Please sign in to comment.