descriptive-statistics 1.1.0 → 1.1.1
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.
- data/README.md +2 -2
- data/descriptive-statistics.gemspec +2 -2
- data/lib/descriptive-statistics/version.rb +1 -1
- metadata +6 -5
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# DescriptiveStatistics
|
|
2
2
|
|
|
3
|
-
This gem calculates measures of central tendency (e.g. mean, median mode), dispersion
|
|
4
|
-
spread (e.g variance and standard deviation)
|
|
3
|
+
This gem calculates descriptive statistics including measures of central tendency (e.g. mean, median mode), dispersion
|
|
4
|
+
(e.g. range, and quartiles), and spread (e.g variance and standard deviation).
|
|
5
5
|
|
|
6
6
|
[]
|
|
7
7
|
(http://travis-ci.org/jtescher/descriptive-statistics)
|
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |gem|
|
|
|
9
9
|
gem.authors = ["Julian Tescher"]
|
|
10
10
|
gem.email = ["virulent@gmail.com"]
|
|
11
11
|
gem.description = %q{Descriptive Statistics Calculator}
|
|
12
|
-
gem.summary = %q{Simply calculate measures of central tendency (e.g. mean,
|
|
13
|
-
|
|
12
|
+
gem.summary = %q{Simply calculate descriptive statistics such as measures of central tendency (e.g. mean,median,
|
|
13
|
+
mode), dispersion (e.g. range and quartiles), and spread (e.g variance and standard deviation)}
|
|
14
14
|
gem.homepage = "https://github.com/jtescher/descriptive-statistics"
|
|
15
15
|
|
|
16
16
|
gem.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: descriptive-statistics
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -82,7 +82,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
82
82
|
version: '0'
|
|
83
83
|
segments:
|
|
84
84
|
- 0
|
|
85
|
-
hash:
|
|
85
|
+
hash: 2077244715970886546
|
|
86
86
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
87
|
none: false
|
|
88
88
|
requirements:
|
|
@@ -91,14 +91,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
91
91
|
version: '0'
|
|
92
92
|
segments:
|
|
93
93
|
- 0
|
|
94
|
-
hash:
|
|
94
|
+
hash: 2077244715970886546
|
|
95
95
|
requirements: []
|
|
96
96
|
rubyforge_project:
|
|
97
97
|
rubygems_version: 1.8.24
|
|
98
98
|
signing_key:
|
|
99
99
|
specification_version: 3
|
|
100
|
-
summary: Simply calculate measures of central tendency
|
|
101
|
-
(e.g. range and quartiles), and spread (e.g
|
|
100
|
+
summary: Simply calculate descriptive statistics such as measures of central tendency
|
|
101
|
+
(e.g. mean,median, mode), dispersion (e.g. range and quartiles), and spread (e.g
|
|
102
|
+
variance and standard deviation)
|
|
102
103
|
test_files:
|
|
103
104
|
- spec/lib/descriptive-statistics/central_tendency_spec.rb
|
|
104
105
|
- spec/lib/descriptive-statistics/dispersion_spec.rb
|