@datagrok/eda 1.1.29 → 1.1.30
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.
- package/CHANGELOG.md +4 -0
- package/README.md +2 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +1 -1
- package/src/package.ts +66 -0
- package/src/pls/pls-constants.ts +1 -0
- package/src/pls/pls-ml.ts +376 -0
- package/src/pls/pls-tools.ts +41 -33
- package/src/regression.ts +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -11,9 +11,10 @@ EDA is a [package](https://datagrok.ai/help/develop/#packages) for the [Datagrok
|
|
|
11
11
|
* Partial least squares regression ([PLS](https://en.wikipedia.org/wiki/Partial_least_squares_regression))
|
|
12
12
|
* Supervised machine learning
|
|
13
13
|
* Least-squares support vector machine ([LS-SVM](https://en.wikipedia.org/wiki/Least-squares_support_vector_machine))
|
|
14
|
+
* [Linear regression](https://en.wikipedia.org/wiki/Linear_regression)
|
|
14
15
|
* [Softmax](https://en.wikipedia.org/wiki/Multinomial_logistic_regression) classifier
|
|
16
|
+
* [PLS](https://en.wikipedia.org/wiki/Partial_least_squares_regression) regression
|
|
15
17
|
* Analysis of variances (ANOVA)
|
|
16
18
|
* One-way ANOVA ([link](https://en.wikipedia.org/wiki/One-way_analysis_of_variance))
|
|
17
19
|
* Missing data imputation
|
|
18
20
|
* k-nearest neighbors method ([KNN](https://en.wikipedia.org/wiki/K-nearest_neighbors_algorithm))
|
|
19
|
-
* [Linear regression](https://en.wikipedia.org/wiki/Linear_regression)
|