Skip to content

Commit dcd65ba

Browse files
committed
add ml-regression
1 parent 7523808 commit dcd65ba

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

History.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.7.0 / 2015-09-07
2+
==================
3+
4+
* Add ml.Regression
5+
16
0.6.0 / 2015-08-20
27
==================
38

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ require(['path/to/ml/dist/ml.min'], function (ML) {
6767
* Array: `ML.Stat.array`
6868
* Matrix: `ML.Stat.matrix`
6969
* Principal component analysis (PCA): [ML.Stat.PCA](https://github.com/mljs/pca)
70+
* Regression: [`ML.Regression`](https://github.com/mljs/regression)
7071
* Random number generation: `ML.RNG`
7172
* XORShift-add: [ML.RNG.XSadd](https://github.com/mljs/xsadd)
7273
* Clustering: `ML.Clust`

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
"ml-naivebayes": "1.0.0",
4141
"ml-pca": "0.0.3",
4242
"ml-pls": "0.0.6",
43+
"ml-regression": "^1.0.0",
4344
"ml-savitzky-golay": "1.0.0",
4445
"ml-som": "0.0.6",
4546
"ml-stat": "^1.1.0",
@@ -52,4 +53,4 @@
5253
"mocha-better-spec-reporter": "^2.1.1",
5354
"should": "^7.0.2"
5455
}
55-
}
56+
}

src/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Stat.matrix = require('ml-stat/matrix');
2121
Stat.PCA = require('ml-pca');
2222

2323

24+
exports.Regression = require('ml-regression');
25+
26+
2427
// Random number generation
2528
var RNG = exports.RNG = {};
2629
RNG.XSadd = require('ml-xsadd');

0 commit comments

Comments
 (0)