rubystats 0.2.6 → 0.3.0

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubystats
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Scharrenbroich
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-07-24 00:00:00.000000000 Z
13
+ date: 2017-12-02 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest
@@ -67,22 +67,39 @@ files:
67
67
  - examples/failrate_vs_goal.rb
68
68
  - examples/fisher.rb
69
69
  - examples/norm.rb
70
+ - examples/uniform.rb
70
71
  - lib/rubystats.rb
71
72
  - lib/rubystats/beta_distribution.rb
72
73
  - lib/rubystats/binomial_distribution.rb
74
+ - lib/rubystats/cauchy_distribution.rb
73
75
  - lib/rubystats/exponential_distribution.rb
74
76
  - lib/rubystats/fishers_exact_test.rb
77
+ - lib/rubystats/gamma_distribution.rb
78
+ - lib/rubystats/lognormal_distribution.rb
75
79
  - lib/rubystats/modules.rb
80
+ - lib/rubystats/multivariate_normal_distribution.rb
76
81
  - lib/rubystats/normal_distribution.rb
82
+ - lib/rubystats/poisson_distribution.rb
77
83
  - lib/rubystats/probability_distribution.rb
84
+ - lib/rubystats/student_t_distribution.rb
85
+ - lib/rubystats/uniform_distribution.rb
78
86
  - lib/rubystats/version.rb
87
+ - lib/rubystats/weibull_distribution.rb
79
88
  - rubystats.gemspec
80
89
  - test/tc_beta.rb
81
90
  - test/tc_binomial.rb
91
+ - test/tc_cauchy.rb
82
92
  - test/tc_exponential.rb
83
93
  - test/tc_fisher.rb
94
+ - test/tc_gamma.rb
95
+ - test/tc_lnorm.rb
96
+ - test/tc_multivariate_normal.rb
84
97
  - test/tc_norm.rb
98
+ - test/tc_poisson.rb
85
99
  - test/tc_require_all.rb
100
+ - test/tc_studentt.rb
101
+ - test/tc_unif.rb
102
+ - test/tc_weibull.rb
86
103
  - test/ts_stats.rb
87
104
  homepage: https://github.com/phillbaker/rubystats
88
105
  licenses:
@@ -111,8 +128,16 @@ summary: ''
111
128
  test_files:
112
129
  - test/tc_beta.rb
113
130
  - test/tc_binomial.rb
131
+ - test/tc_cauchy.rb
114
132
  - test/tc_exponential.rb
115
133
  - test/tc_fisher.rb
134
+ - test/tc_gamma.rb
135
+ - test/tc_lnorm.rb
136
+ - test/tc_multivariate_normal.rb
116
137
  - test/tc_norm.rb
138
+ - test/tc_poisson.rb
117
139
  - test/tc_require_all.rb
140
+ - test/tc_studentt.rb
141
+ - test/tc_unif.rb
142
+ - test/tc_weibull.rb
118
143
  - test/ts_stats.rb