stat_power 0.1.0.alpha.1 → 0.1.0.alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/README.md +14 -4
- data/RELEASING.md +31 -23
- data/ROADMAP.md +9 -9
- data/docs/pwr_parity.md +9 -6
- data/docs/validation.md +60 -0
- data/lib/stat_power/anova.rb +308 -0
- data/lib/stat_power/anova_result.rb +41 -0
- data/lib/stat_power/chi_square.rb +232 -0
- data/lib/stat_power/chi_square_result.rb +20 -0
- data/lib/stat_power/distributions/chi_square.rb +117 -0
- data/lib/stat_power/distributions/noncentral_chi_square.rb +171 -0
- data/lib/stat_power/effect_size/chi_square.rb +125 -0
- data/lib/stat_power/f2.rb +247 -0
- data/lib/stat_power/f2_result.rb +27 -0
- data/lib/stat_power/power_curve.rb +85 -0
- data/lib/stat_power/power_curve_point.rb +6 -0
- data/lib/stat_power/special_functions/gamma.rb +119 -0
- data/lib/stat_power/version.rb +1 -1
- data/lib/stat_power.rb +12 -0
- data/sig/stat_power.rbs +147 -0
- metadata +15 -2
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stat_power
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.alpha.
|
|
4
|
+
version: 0.1.0.alpha.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Diogo Ribeiro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Native Ruby tools for statistical power analysis, sample-size determination,
|
|
14
14
|
effect-size calculations, and inverse power problems.
|
|
@@ -24,23 +24,36 @@ files:
|
|
|
24
24
|
- ROADMAP.md
|
|
25
25
|
- docs/mathematical_conventions.md
|
|
26
26
|
- docs/pwr_parity.md
|
|
27
|
+
- docs/validation.md
|
|
27
28
|
- lib/stat_power.rb
|
|
29
|
+
- lib/stat_power/anova.rb
|
|
30
|
+
- lib/stat_power/anova_result.rb
|
|
31
|
+
- lib/stat_power/chi_square.rb
|
|
32
|
+
- lib/stat_power/chi_square_result.rb
|
|
28
33
|
- lib/stat_power/correlation.rb
|
|
34
|
+
- lib/stat_power/distributions/chi_square.rb
|
|
29
35
|
- lib/stat_power/distributions/f_distribution.rb
|
|
36
|
+
- lib/stat_power/distributions/noncentral_chi_square.rb
|
|
30
37
|
- lib/stat_power/distributions/noncentral_f.rb
|
|
31
38
|
- lib/stat_power/distributions/noncentral_t.rb
|
|
32
39
|
- lib/stat_power/distributions/normal.rb
|
|
33
40
|
- lib/stat_power/distributions/student_t.rb
|
|
41
|
+
- lib/stat_power/effect_size/chi_square.rb
|
|
34
42
|
- lib/stat_power/effect_size/conventional.rb
|
|
35
43
|
- lib/stat_power/effect_size/proportion.rb
|
|
36
44
|
- lib/stat_power/errors.rb
|
|
45
|
+
- lib/stat_power/f2.rb
|
|
46
|
+
- lib/stat_power/f2_result.rb
|
|
37
47
|
- lib/stat_power/integration/adaptive_simpson.rb
|
|
38
48
|
- lib/stat_power/normal_mean.rb
|
|
49
|
+
- lib/stat_power/power_curve.rb
|
|
50
|
+
- lib/stat_power/power_curve_point.rb
|
|
39
51
|
- lib/stat_power/power_result.rb
|
|
40
52
|
- lib/stat_power/proportion.rb
|
|
41
53
|
- lib/stat_power/result.rb
|
|
42
54
|
- lib/stat_power/solvers/bisection.rb
|
|
43
55
|
- lib/stat_power/special_functions/beta.rb
|
|
56
|
+
- lib/stat_power/special_functions/gamma.rb
|
|
44
57
|
- lib/stat_power/t_test.rb
|
|
45
58
|
- lib/stat_power/t_test_unequal.rb
|
|
46
59
|
- lib/stat_power/unequal_power_result.rb
|