We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16ae7db + 8390009 commit fb62204Copy full SHA for fb62204
crates/analysis/src/effect_size.rs
@@ -57,7 +57,7 @@ pub fn calculate<'a>(
57
.map(|m| m.count as f64)
58
.collect();
59
60
- let ci = behrens_fisher::confidence_interval(1.0 - significance_level, a, b)?;
+ let ci = behrens_fisher::confidence_interval(1.0 - significance_level, a, b).unwrap_or(0.0);
61
results.push(EffectSize {
62
arch: key.arch.unwrap(),
63
wasm: key.wasm.unwrap(),
0 commit comments