flex-station-data 0.3.0 → 0.3.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -1
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/bin/flex-station-linear-regression +0 -2
- data/lib/flex_station_data/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 021c77855ba20d73d59feec617693f9144813dd8df75bf7152e5910b725e4d96
|
|
4
|
+
data.tar.gz: 6083225e530d6237b32240da1d9d36673ee0295f7e55ff20e2d7611f9a34984f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc685111292440177fc03da73865dfdf9b70d6b9385ce23a7d622b1fbdbdd01698c7fd46beb963bb71064b58297f26ac4b0d110287eedd95f771cb859f31e20a
|
|
7
|
+
data.tar.gz: c110c96e690d26968964d7814bd3dab6347bd2bad15f9171102ac05b32a9c7dbdb6c1a23d472ddea6734062623fce8b709b964eea2eed6313ad32dddf954526b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# 0.3.0
|
|
2
2
|
|
|
3
3
|
* The linear regression analysis report now produces a summary report of the
|
|
4
|
-
regression for each sample. The sample data can by added by
|
|
4
|
+
regression for each sample. The sample data can by added by specifying the
|
|
5
5
|
`--verbose` option.
|
|
6
6
|
|
|
7
7
|
# 0.2.0
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -50,7 +50,7 @@ can do that by piping the output to a file:
|
|
|
50
50
|
To perform a linear regression analysis on the sample data, use the following
|
|
51
51
|
command:
|
|
52
52
|
|
|
53
|
-
$ flex-station-data
|
|
53
|
+
$ flex-station-data linear-regression <source file> [--threshold=<threshold>] [--verbose] [--min-r-squared=<mininmum R²>]
|
|
54
54
|
|
|
55
55
|
Note that the `source file` and `threshold` options are the same as for the
|
|
56
56
|
`sample-data` command above. If a `--min-r-squared` value is given, samples
|
|
@@ -5,8 +5,6 @@ require "flex_station_data/presenters/plates_csv"
|
|
|
5
5
|
require "flex_station_data/presenters/linear_regression/plates_hash"
|
|
6
6
|
require "flex_station_data/presenters/linear_regression/verbose_sample_csv"
|
|
7
7
|
|
|
8
|
-
require "pry"
|
|
9
|
-
|
|
10
8
|
module FlexStationData
|
|
11
9
|
class LinearRegressionApp
|
|
12
10
|
include Concerns::Service
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flex-station-data
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Carney
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-08-
|
|
11
|
+
date: 2019-08-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|