lite-statistics 1.0.1 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +14 -3
- data/.travis.yml +1 -0
- data/CHANGELOG.md +22 -1
- data/Gemfile.lock +70 -61
- data/README.md +3 -3
- data/benchmarks/base.rb +3 -3
- data/benchmarks/descriptive-statistics.rb +3 -3
- data/benchmarks/statistica.rb +4 -4
- data/docs/descriptive/SUMMARY.md +3 -3
- data/docs/descriptive/{ZSCORE.md → ZSCORES.md} +5 -5
- data/lib/generators/lite/statistics/install_generator.rb +1 -1
- data/lib/lite/statistics.rb +1 -3
- data/lib/lite/statistics/configuration.rb +14 -8
- data/lib/lite/statistics/descriptive.rb +17 -18
- data/lib/lite/statistics/enumerable.rb +21 -17
- data/lib/lite/statistics/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8f8f07632fa69ea54418688b58a258e6300fecd15589d9fd81bb6792ab5174a
|
4
|
+
data.tar.gz: 30ef26cef558ef6a9060c302ef27b6b621f71844a4302901df7cc2d9b6308be4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1b5b3f5cb9ae4c5b285fe0b3b6762379a0b6d813c51002e88ddece1bd4fbea03f74958271525d9615a93bbefe138b6aa0021ab1a6a776c7952f4cd7acb72b93
|
7
|
+
data.tar.gz: 19df215b60614feaa471255c1b48ae6df2471ec02dcdfd5d6417f43cd6f0efe919f20936d999ec5c1201830bfadb314c62bbffa58cc11905a8a716908c26125a
|
data/.rubocop.yml
CHANGED
@@ -2,11 +2,14 @@ require:
|
|
2
2
|
- rubocop-performance
|
3
3
|
- rubocop-rspec
|
4
4
|
AllCops:
|
5
|
-
TargetRubyVersion: 2.
|
5
|
+
TargetRubyVersion: 2.7
|
6
|
+
NewCops: enable
|
6
7
|
DisplayCopNames: true
|
7
8
|
DisplayStyleGuide: true
|
8
|
-
|
9
|
-
|
9
|
+
Gemspec/RequiredRubyVersion:
|
10
|
+
Enabled: false
|
11
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
12
|
+
Enabled: true
|
10
13
|
Layout/EmptyLinesAroundBlockBody:
|
11
14
|
Exclude:
|
12
15
|
- 'spec/**/**/*'
|
@@ -14,6 +17,14 @@ Layout/EmptyLinesAroundClassBody:
|
|
14
17
|
EnforcedStyle: empty_lines_except_namespace
|
15
18
|
Layout/EmptyLinesAroundModuleBody:
|
16
19
|
EnforcedStyle: empty_lines_except_namespace
|
20
|
+
Layout/LineLength:
|
21
|
+
Max: 100
|
22
|
+
Layout/SpaceAroundMethodCallOperator:
|
23
|
+
Enabled: true
|
24
|
+
Lint/RaiseException:
|
25
|
+
Enabled: true
|
26
|
+
Lint/StructNewOverride:
|
27
|
+
Enabled: true
|
17
28
|
Metrics/BlockLength:
|
18
29
|
Enabled: false
|
19
30
|
Metrics/ClassLength:
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -6,10 +6,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [1.1.0] - 2019-06-06
|
10
|
+
### Changed
|
11
|
+
- Removed underscore of quartile numbers
|
12
|
+
|
13
|
+
## [1.0.5] - 2019-08-24
|
14
|
+
### Added
|
15
|
+
- Added ruby 2.7 support
|
16
|
+
### Changed
|
17
|
+
- Improved how configuration works
|
18
|
+
|
19
|
+
## [1.0.4] - 2019-08-17
|
20
|
+
### Changed
|
21
|
+
- Add check for monkey patches
|
22
|
+
|
23
|
+
## [1.0.3] - 2019-08-15
|
24
|
+
### Changed
|
25
|
+
- Underscore initializer file name
|
26
|
+
|
27
|
+
## [1.0.2] - 2019-07-18
|
28
|
+
### Changed
|
29
|
+
- Rename zscores to zscoress
|
30
|
+
|
9
31
|
## [1.0.1] - 2019-07-18
|
10
32
|
### Changed
|
11
33
|
- Memoization to use Lite::Memoize::Alias for more speed
|
12
|
-
- Rename zscore to zscores
|
13
34
|
- Rework benchmarks
|
14
35
|
|
15
36
|
## [1.0.0] - 2019-07-13
|
data/Gemfile.lock
CHANGED
@@ -1,107 +1,116 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
lite-statistics (1.0
|
4
|
+
lite-statistics (1.1.0)
|
5
5
|
lite-memoize
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionpack (
|
11
|
-
actionview (=
|
12
|
-
activesupport (=
|
13
|
-
rack (~> 2.0)
|
10
|
+
actionpack (6.0.3.4)
|
11
|
+
actionview (= 6.0.3.4)
|
12
|
+
activesupport (= 6.0.3.4)
|
13
|
+
rack (~> 2.0, >= 2.0.8)
|
14
14
|
rack-test (>= 0.6.3)
|
15
15
|
rails-dom-testing (~> 2.0)
|
16
|
-
rails-html-sanitizer (~> 1.0, >= 1.0
|
17
|
-
actionview (
|
18
|
-
activesupport (=
|
16
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
17
|
+
actionview (6.0.3.4)
|
18
|
+
activesupport (= 6.0.3.4)
|
19
19
|
builder (~> 3.1)
|
20
20
|
erubi (~> 1.4)
|
21
21
|
rails-dom-testing (~> 2.0)
|
22
|
-
rails-html-sanitizer (~> 1.
|
23
|
-
activesupport (
|
22
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
23
|
+
activesupport (6.0.3.4)
|
24
24
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
25
25
|
i18n (>= 0.7, < 2)
|
26
26
|
minitest (~> 5.1)
|
27
27
|
tzinfo (~> 1.1)
|
28
|
-
|
29
|
-
|
28
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
29
|
+
ast (2.4.1)
|
30
|
+
builder (3.2.4)
|
30
31
|
colorize (0.8.1)
|
31
|
-
concurrent-ruby (1.1.
|
32
|
-
crass (1.0.
|
33
|
-
diff-lcs (1.
|
34
|
-
erubi (1.
|
35
|
-
fasterer (0.
|
32
|
+
concurrent-ruby (1.1.7)
|
33
|
+
crass (1.0.6)
|
34
|
+
diff-lcs (1.4.4)
|
35
|
+
erubi (1.9.0)
|
36
|
+
fasterer (0.8.3)
|
36
37
|
colorize (~> 0.7)
|
37
|
-
ruby_parser (>= 3.
|
38
|
+
ruby_parser (>= 3.14.1)
|
38
39
|
generator_spec (0.9.4)
|
39
40
|
activesupport (>= 3.0.0)
|
40
41
|
railties (>= 3.0.0)
|
41
|
-
i18n (1.
|
42
|
+
i18n (1.8.5)
|
42
43
|
concurrent-ruby (~> 1.0)
|
43
|
-
|
44
|
-
|
45
|
-
loofah (2.2.3)
|
44
|
+
lite-memoize (1.0.3)
|
45
|
+
loofah (2.7.0)
|
46
46
|
crass (~> 1.0.2)
|
47
47
|
nokogiri (>= 1.5.9)
|
48
|
-
method_source (0.
|
48
|
+
method_source (1.0.0)
|
49
49
|
mini_portile2 (2.4.0)
|
50
|
-
minitest (5.
|
51
|
-
nokogiri (1.10.
|
50
|
+
minitest (5.14.2)
|
51
|
+
nokogiri (1.10.10)
|
52
52
|
mini_portile2 (~> 2.4.0)
|
53
|
-
parallel (1.
|
54
|
-
parser (2.
|
55
|
-
ast (~> 2.4.
|
56
|
-
rack (2.
|
53
|
+
parallel (1.19.2)
|
54
|
+
parser (2.7.2.0)
|
55
|
+
ast (~> 2.4.1)
|
56
|
+
rack (2.2.3)
|
57
57
|
rack-test (1.1.0)
|
58
58
|
rack (>= 1.0, < 3)
|
59
59
|
rails-dom-testing (2.0.3)
|
60
60
|
activesupport (>= 4.2.0)
|
61
61
|
nokogiri (>= 1.6)
|
62
|
-
rails-html-sanitizer (1.0
|
63
|
-
loofah (~> 2.
|
64
|
-
railties (
|
65
|
-
actionpack (=
|
66
|
-
activesupport (=
|
62
|
+
rails-html-sanitizer (1.3.0)
|
63
|
+
loofah (~> 2.3)
|
64
|
+
railties (6.0.3.4)
|
65
|
+
actionpack (= 6.0.3.4)
|
66
|
+
activesupport (= 6.0.3.4)
|
67
67
|
method_source
|
68
68
|
rake (>= 0.8.7)
|
69
|
-
thor (>= 0.
|
69
|
+
thor (>= 0.20.3, < 2.0)
|
70
70
|
rainbow (3.0.0)
|
71
|
-
rake (
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
rspec-
|
76
|
-
|
77
|
-
rspec-
|
78
|
-
rspec-
|
71
|
+
rake (13.0.1)
|
72
|
+
regexp_parser (1.8.2)
|
73
|
+
rexml (3.2.4)
|
74
|
+
rspec (3.10.0)
|
75
|
+
rspec-core (~> 3.10.0)
|
76
|
+
rspec-expectations (~> 3.10.0)
|
77
|
+
rspec-mocks (~> 3.10.0)
|
78
|
+
rspec-core (3.10.0)
|
79
|
+
rspec-support (~> 3.10.0)
|
80
|
+
rspec-expectations (3.10.0)
|
79
81
|
diff-lcs (>= 1.2.0, < 2.0)
|
80
|
-
rspec-support (~> 3.
|
81
|
-
rspec-mocks (3.
|
82
|
+
rspec-support (~> 3.10.0)
|
83
|
+
rspec-mocks (3.10.0)
|
82
84
|
diff-lcs (>= 1.2.0, < 2.0)
|
83
|
-
rspec-support (~> 3.
|
84
|
-
rspec-support (3.
|
85
|
-
rubocop (
|
86
|
-
jaro_winkler (~> 1.5.1)
|
85
|
+
rspec-support (~> 3.10.0)
|
86
|
+
rspec-support (3.10.0)
|
87
|
+
rubocop (1.2.0)
|
87
88
|
parallel (~> 1.10)
|
88
|
-
parser (>= 2.
|
89
|
+
parser (>= 2.7.1.5)
|
89
90
|
rainbow (>= 2.2.2, < 4.0)
|
91
|
+
regexp_parser (>= 1.8)
|
92
|
+
rexml
|
93
|
+
rubocop-ast (>= 1.0.1)
|
90
94
|
ruby-progressbar (~> 1.7)
|
91
|
-
unicode-display_width (>= 1.4.0, <
|
92
|
-
rubocop-
|
93
|
-
|
94
|
-
rubocop-
|
95
|
-
rubocop (>= 0.
|
95
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
96
|
+
rubocop-ast (1.1.1)
|
97
|
+
parser (>= 2.7.1.5)
|
98
|
+
rubocop-performance (1.8.1)
|
99
|
+
rubocop (>= 0.87.0)
|
100
|
+
rubocop-ast (>= 0.4.0)
|
101
|
+
rubocop-rspec (2.0.0)
|
102
|
+
rubocop (~> 1.0)
|
103
|
+
rubocop-ast (>= 1.1.0)
|
96
104
|
ruby-progressbar (1.10.1)
|
97
|
-
ruby_parser (3.
|
105
|
+
ruby_parser (3.15.0)
|
98
106
|
sexp_processor (~> 4.9)
|
99
|
-
sexp_processor (4.
|
100
|
-
thor (0.
|
107
|
+
sexp_processor (4.15.1)
|
108
|
+
thor (1.0.1)
|
101
109
|
thread_safe (0.3.6)
|
102
|
-
tzinfo (1.2.
|
110
|
+
tzinfo (1.2.7)
|
103
111
|
thread_safe (~> 0.1)
|
104
|
-
unicode-display_width (1.
|
112
|
+
unicode-display_width (1.7.0)
|
113
|
+
zeitwerk (2.4.1)
|
105
114
|
|
106
115
|
PLATFORMS
|
107
116
|
ruby
|
@@ -118,4 +127,4 @@ DEPENDENCIES
|
|
118
127
|
rubocop-rspec
|
119
128
|
|
120
129
|
BUNDLED WITH
|
121
|
-
2.
|
130
|
+
2.1.4
|
data/README.md
CHANGED
@@ -31,7 +31,7 @@ Or install it yourself as:
|
|
31
31
|
## Configurations
|
32
32
|
|
33
33
|
`rails g lite:statistics:install` will generate the following file:
|
34
|
-
`../config/initalizers/
|
34
|
+
`../config/initalizers/lite_statistics.rb`
|
35
35
|
|
36
36
|
```ruby
|
37
37
|
Lite::Statistics.configure do |config|
|
@@ -80,7 +80,7 @@ Ex: `variance` => `sample_variance`
|
|
80
80
|
* [Sample|Population Standard Deviation](https://github.com/drexed/lite-statistics/blob/master/docs/descriptive/STANDARD_DEVIATION.md)
|
81
81
|
* [Sample|Population Coefficient of Variation](https://github.com/drexed/lite-statistics/blob/master/docs/descriptive/COEFFICIENT_OF_VARIATION.md)
|
82
82
|
* [Sample|Population Standard Error](https://github.com/drexed/lite-statistics/blob/master/docs/descriptive/STANDARD_ERROR.md)
|
83
|
-
* [Sample|Population Z-
|
83
|
+
* [Sample|Population Z-Scores](https://github.com/drexed/lite-statistics/blob/master/docs/descriptive/ZSCORES.md)
|
84
84
|
|
85
85
|
#### Shape
|
86
86
|
|
@@ -101,7 +101,7 @@ All benchmarks are executed using the baseline summary (exact same calculations
|
|
101
101
|
and the full summary (all available calculations for each). Each is generated
|
102
102
|
using an array containing 1 million random integers on the `2.6.3` Ruby version.
|
103
103
|
|
104
|
-
View
|
104
|
+
View how each compares to other libs by running the [benchmarks](https://github.com/drexed/lite-statistics/tree/master/benchmarks).
|
105
105
|
|
106
106
|
#### Baseline summaries
|
107
107
|
|
data/benchmarks/base.rb
CHANGED
@@ -13,9 +13,9 @@ def ls_baseline_summary(data)
|
|
13
13
|
median: data.median,
|
14
14
|
min: data.min,
|
15
15
|
mode: data.mode,
|
16
|
-
|
17
|
-
|
18
|
-
|
16
|
+
quartile1: data.value_from_percentile(25),
|
17
|
+
quartile2: data.value_from_percentile(50),
|
18
|
+
quartile3: data.value_from_percentile(75),
|
19
19
|
range: data.range,
|
20
20
|
size: data.size,
|
21
21
|
sum: data.sum,
|
@@ -17,9 +17,9 @@ def baseline_summary(data)
|
|
17
17
|
median: data.median,
|
18
18
|
min: data.min,
|
19
19
|
mode: data.mode,
|
20
|
-
|
21
|
-
|
22
|
-
|
20
|
+
quartile1: data.value_from_percentile(25),
|
21
|
+
quartile2: data.value_from_percentile(50),
|
22
|
+
quartile3: data.value_from_percentile(75),
|
23
23
|
range: data.range,
|
24
24
|
size: data.size,
|
25
25
|
sum: data.sum,
|
data/benchmarks/statistica.rb
CHANGED
@@ -17,9 +17,9 @@ def baseline_summary(data)
|
|
17
17
|
median: data.get_median,
|
18
18
|
min: data.min,
|
19
19
|
mode: data.get_mode,
|
20
|
-
|
21
|
-
|
22
|
-
|
20
|
+
quartile1: data.get_percentile(25),
|
21
|
+
quartile2: data.get_percentile(50),
|
22
|
+
quartile3: data.get_percentile(75),
|
23
23
|
range: data.get_range,
|
24
24
|
size: data.size,
|
25
25
|
sum: data.get_sum,
|
@@ -50,7 +50,7 @@ def full_summary(data)
|
|
50
50
|
geometric_mean: data.get_geo_mean,
|
51
51
|
harmonic_mean: data.get_harm_mean,
|
52
52
|
product: data.get_product,
|
53
|
-
|
53
|
+
interquartilerange: data.get_interquartilerange,
|
54
54
|
relative_variance: data.get_relative_variance,
|
55
55
|
coeff_variation: data.get_coeff_variation
|
56
56
|
)
|
data/docs/descriptive/SUMMARY.md
CHANGED
@@ -7,9 +7,9 @@ collection = [1, 1, 2, 3, 10]
|
|
7
7
|
results = {
|
8
8
|
# - all documented calculations - ...
|
9
9
|
# - including value_from_percentile of 25, 50, and 75 (quartile) -
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
quartile1: 2,
|
11
|
+
quartile2: 3,
|
12
|
+
quartile3: 10
|
13
13
|
}
|
14
14
|
|
15
15
|
klass = Lite::Statistics::Descriptive.new(collection)
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# Sample|Population Z-
|
1
|
+
# Sample|Population Z-Scores
|
2
2
|
|
3
|
-
Alias: `
|
3
|
+
Alias: `zscores`
|
4
4
|
|
5
5
|
```ruby
|
6
6
|
collection = [1, 1, 2, 3, 10]
|
@@ -12,13 +12,13 @@ results = {
|
|
12
12
|
}
|
13
13
|
|
14
14
|
klass = Lite::Statistics::Descriptive.new(collection)
|
15
|
-
klass.
|
15
|
+
klass.sample_zscores
|
16
16
|
|
17
17
|
# - or -
|
18
18
|
|
19
|
-
Lite::Statistics::Descriptive.
|
19
|
+
Lite::Statistics::Descriptive.population_zscores(collection)
|
20
20
|
|
21
21
|
# - or -
|
22
22
|
|
23
|
-
collection.
|
23
|
+
collection.sample_zscores
|
24
24
|
```
|
data/lib/lite/statistics.rb
CHANGED
@@ -2,10 +2,8 @@
|
|
2
2
|
|
3
3
|
require 'lite/memoize'
|
4
4
|
|
5
|
-
%w[version configuration descriptive].each do |filename|
|
5
|
+
%w[version configuration descriptive enumerable].each do |filename|
|
6
6
|
require "lite/statistics/#{filename}"
|
7
7
|
end
|
8
8
|
|
9
|
-
require 'lite/statistics/enumerable' if Lite::Statistics.configuration.monkey_patches
|
10
|
-
|
11
9
|
require 'generators/lite/statistics/install_generator'
|
@@ -13,16 +13,22 @@ module Lite
|
|
13
13
|
|
14
14
|
end
|
15
15
|
|
16
|
-
|
17
|
-
@configuration ||= Configuration.new
|
18
|
-
end
|
16
|
+
class << self
|
19
17
|
|
20
|
-
|
21
|
-
|
22
|
-
|
18
|
+
attr_writer :configuration
|
19
|
+
|
20
|
+
def configuration
|
21
|
+
@configuration ||= Configuration.new
|
22
|
+
end
|
23
|
+
|
24
|
+
def configure
|
25
|
+
yield(configuration)
|
26
|
+
end
|
27
|
+
|
28
|
+
def reset_configuration!
|
29
|
+
@configuration = Configuration.new
|
30
|
+
end
|
23
31
|
|
24
|
-
def self.configure
|
25
|
-
yield(configuration)
|
26
32
|
end
|
27
33
|
|
28
34
|
end
|
@@ -10,9 +10,9 @@ module Lite
|
|
10
10
|
frequencies max mean median midrange min mode proportions percentile_from_value
|
11
11
|
population_coefficient_of_variation population_kurtosis population_size population_skewness
|
12
12
|
population_standard_deviation population_standard_error population_summary
|
13
|
-
population_variance
|
13
|
+
population_variance population_zscores range sample_coefficient_of_variation sample_kurtosis
|
14
14
|
sample_size sample_skewness sample_standard_deviation sample_standard_error sample_summary
|
15
|
-
sample_variance
|
15
|
+
sample_variance sample_zscores sum value_from_percentile
|
16
16
|
].freeze
|
17
17
|
|
18
18
|
def initialize(collection)
|
@@ -38,7 +38,7 @@ module Lite
|
|
38
38
|
|
39
39
|
memoize :frequencies
|
40
40
|
|
41
|
-
# rubocop:disable Style/
|
41
|
+
# rubocop:disable Style/RedundantSort
|
42
42
|
def max
|
43
43
|
return if @collection.empty?
|
44
44
|
|
@@ -46,7 +46,7 @@ module Lite
|
|
46
46
|
end
|
47
47
|
|
48
48
|
memoize :max
|
49
|
-
# rubocop:enable Style/
|
49
|
+
# rubocop:enable Style/RedundantSort
|
50
50
|
|
51
51
|
def mean
|
52
52
|
return if @collection.empty?
|
@@ -68,7 +68,7 @@ module Lite
|
|
68
68
|
memoize :median
|
69
69
|
# rubocop:enable Metrics/AbcSize
|
70
70
|
|
71
|
-
# rubocop:disable Style/
|
71
|
+
# rubocop:disable Style/RedundantSort
|
72
72
|
def min
|
73
73
|
return if @collection.empty?
|
74
74
|
|
@@ -76,7 +76,7 @@ module Lite
|
|
76
76
|
end
|
77
77
|
|
78
78
|
memoize :min
|
79
|
-
# rubocop:enable Style/
|
79
|
+
# rubocop:enable Style/RedundantSort
|
80
80
|
|
81
81
|
def mode
|
82
82
|
return if @collection.empty?
|
@@ -157,7 +157,7 @@ module Lite
|
|
157
157
|
population_standard_deviation: population_standard_deviation,
|
158
158
|
population_standard_error: population_standard_error,
|
159
159
|
population_variance: population_variance,
|
160
|
-
|
160
|
+
population_zscores: population_zscores
|
161
161
|
)
|
162
162
|
end
|
163
163
|
|
@@ -169,7 +169,7 @@ module Lite
|
|
169
169
|
|
170
170
|
memoize :population_variance
|
171
171
|
|
172
|
-
def
|
172
|
+
def population_zscores
|
173
173
|
return if size < 2
|
174
174
|
return Hash.new(0) if population_standard_deviation.zero?
|
175
175
|
|
@@ -178,7 +178,7 @@ module Lite
|
|
178
178
|
end
|
179
179
|
end
|
180
180
|
|
181
|
-
memoize :
|
181
|
+
memoize :population_zscores
|
182
182
|
|
183
183
|
def midrange
|
184
184
|
return if @collection.empty?
|
@@ -192,7 +192,7 @@ module Lite
|
|
192
192
|
def proportions
|
193
193
|
return if @collection.empty?
|
194
194
|
|
195
|
-
frequencies.
|
195
|
+
frequencies.transform_values { |val| val / size.to_f }
|
196
196
|
end
|
197
197
|
|
198
198
|
memoize :proportions
|
@@ -270,7 +270,7 @@ module Lite
|
|
270
270
|
sample_standard_deviation: sample_standard_deviation,
|
271
271
|
sample_standard_error: sample_standard_error,
|
272
272
|
sample_variance: sample_variance,
|
273
|
-
|
273
|
+
sample_zscores: sample_zscores
|
274
274
|
)
|
275
275
|
end
|
276
276
|
|
@@ -285,8 +285,7 @@ module Lite
|
|
285
285
|
memoize :sample_variance
|
286
286
|
alias variance sample_variance
|
287
287
|
|
288
|
-
|
289
|
-
def sample_zscore
|
288
|
+
def sample_zscores
|
290
289
|
return if size < 2
|
291
290
|
return Hash.new(0) if sample_standard_deviation.zero?
|
292
291
|
|
@@ -295,8 +294,8 @@ module Lite
|
|
295
294
|
end
|
296
295
|
end
|
297
296
|
|
298
|
-
memoize :
|
299
|
-
alias
|
297
|
+
memoize :sample_zscores
|
298
|
+
alias zscores sample_zscores
|
300
299
|
|
301
300
|
def sum
|
302
301
|
@collection.sum
|
@@ -327,9 +326,9 @@ module Lite
|
|
327
326
|
min: min,
|
328
327
|
mode: mode,
|
329
328
|
proportions: proportions,
|
330
|
-
|
331
|
-
|
332
|
-
|
329
|
+
quartile1: value_from_percentile(25),
|
330
|
+
quartile2: value_from_percentile(50),
|
331
|
+
quartile3: value_from_percentile(75),
|
333
332
|
range: range,
|
334
333
|
size: size,
|
335
334
|
sum: sum
|
@@ -1,24 +1,28 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
if Lite::Statistics.configuration.monkey_patches
|
4
|
+
module Enumerable
|
4
5
|
|
5
|
-
|
6
|
-
next if %i[max min sum].include?(name)
|
6
|
+
EXCLUDED_DESCRIPTIVE_CALCULATIONS ||= %i[max min sum].freeze
|
7
7
|
|
8
|
-
|
9
|
-
|
8
|
+
Lite::Statistics::Descriptive::CALCULATIONS.each do |name|
|
9
|
+
next if EXCLUDED_DESCRIPTIVE_CALCULATIONS.include?(name)
|
10
|
+
|
11
|
+
define_method(name) { |*args| Lite::Statistics::Descriptive.send(name, self, *args) }
|
12
|
+
end
|
10
13
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
14
|
+
alias average mean
|
15
|
+
alias coefficient_of_variation sample_coefficient_of_variation
|
16
|
+
alias kurtosis sample_kurtosis
|
17
|
+
alias midextreme midrange
|
18
|
+
alias percentile percentile_from_value
|
19
|
+
alias percentile_rank value_from_percentile
|
20
|
+
alias skewness sample_skewness
|
21
|
+
alias standard_deviation sample_standard_deviation
|
22
|
+
alias standard_error sample_standard_error
|
23
|
+
alias summary sample_summary
|
24
|
+
alias variance sample_variance
|
25
|
+
alias zscores sample_zscores
|
23
26
|
|
27
|
+
end
|
24
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lite-statistics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Gomez
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lite-memoize
|
@@ -136,7 +136,7 @@ dependencies:
|
|
136
136
|
- - ">="
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: '0'
|
139
|
-
description:
|
139
|
+
description:
|
140
140
|
email:
|
141
141
|
- j.gomez@drexed.com
|
142
142
|
executables: []
|
@@ -183,7 +183,7 @@ files:
|
|
183
183
|
- docs/descriptive/SUMMARY.md
|
184
184
|
- docs/descriptive/VALUE_FROM_PERCENTILE.md
|
185
185
|
- docs/descriptive/VARIANCE.md
|
186
|
-
- docs/descriptive/
|
186
|
+
- docs/descriptive/ZSCORES.md
|
187
187
|
- lib/generators/lite/statistics/install_generator.rb
|
188
188
|
- lib/generators/lite/statistics/templates/install.rb
|
189
189
|
- lib/lite/statistics.rb
|
@@ -196,7 +196,7 @@ homepage: http://drexed.github.io/lite-statistics
|
|
196
196
|
licenses:
|
197
197
|
- MIT
|
198
198
|
metadata: {}
|
199
|
-
post_install_message:
|
199
|
+
post_install_message:
|
200
200
|
rdoc_options: []
|
201
201
|
require_paths:
|
202
202
|
- lib
|
@@ -211,8 +211,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
211
211
|
- !ruby/object:Gem::Version
|
212
212
|
version: '0'
|
213
213
|
requirements: []
|
214
|
-
rubygems_version: 3.
|
215
|
-
signing_key:
|
214
|
+
rubygems_version: 3.1.4
|
215
|
+
signing_key:
|
216
216
|
specification_version: 4
|
217
217
|
summary: Generate statistics from collections of data points
|
218
218
|
test_files: []
|