linear_regression_trend 1.0.0 → 1.0.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/README.md +4 -0
- data/lib/linear_regression_trend/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6f66c104996dc4de6d322598425e2ebae36a259
|
|
4
|
+
data.tar.gz: e372a4aba151e466c685853937cfc4481fb96200
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 539a5ec67621b54faf7a6d1d3314767bad97486d65dada3c1d553d3c8f60b6960bdddb97468538029a82eb53989f417e6232792cc0f019e3eb5996386752595e
|
|
7
|
+
data.tar.gz: d7a9b444778badb73061e864d6190e9ad98b149266aa612953609af879920f97451bbde63063299b8fb2c54e9b7bce28c4f47977ee56cc165255cb9775b855f7
|
data/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
This is a simple gem to help calculate linear regression trendlines for a given list of samples.
|
|
4
4
|
|
|
5
|
+
## Note
|
|
6
|
+
|
|
7
|
+
This gem was created [using this gist.](https://gist.github.com/scottsbaldwin/1733588) originally [authored by Scott Baldwin.](https://github.com/scottsbaldwin). Thanks dude.
|
|
8
|
+
|
|
5
9
|
## Installation
|
|
6
10
|
|
|
7
11
|
Add this line to your application's Gemfile:
|