@datagrok/eda 1.1.24 → 1.1.27
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/.vscode/settings.json +5 -0
- package/CHANGELOG.md +12 -0
- package/README.md +1 -0
- package/dist/05e5e0770f54f07e9474.wasm +0 -0
- package/dist/231.js +2 -2
- package/dist/445.js +2 -0
- package/dist/523.js +2 -2
- package/dist/901.js +2 -0
- package/dist/902.js +2 -2
- package/dist/package.js +2 -2
- package/package.json +92 -92
- package/scripts/command.txt +1 -1
- package/scripts/func.json +1 -1
- package/scripts/module.json +1 -1
- package/src/package.ts +218 -26
- package/src/pls/pls-tools.ts +11 -9
- package/src/regression.ts +232 -0
- package/src/svm.ts +65 -27
- package/wasm/EDA.js +65 -1
- package/wasm/EDA.wasm +0 -0
- package/wasm/EDAAPI.js +30 -0
- package/wasm/EDAForWebWorker.js +1 -1
- package/wasm/callWasm.js +384 -393
- package/wasm/regression-api.cpp +66 -0
- package/wasm/regression.h +128 -0
- package/wasm/workers/fitLinearRegressionParamsWithDataNormalizingWorker.js +13 -0
- package/wasm/workers/fitLinearRegressionParamsWorker.js +13 -0
- package/dist/f5343e2c2e15952ce916.wasm +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# EDA changelog
|
|
2
2
|
|
|
3
|
+
## 1.1.27 (2024-06-17)
|
|
4
|
+
|
|
5
|
+
Add linear regression
|
|
6
|
+
|
|
7
|
+
## 1.1.26 (2024-05-27)
|
|
8
|
+
|
|
9
|
+
Add inflation factor to MCL
|
|
10
|
+
|
|
11
|
+
## 1.1.25 (2024-05-16)
|
|
12
|
+
|
|
13
|
+
Fix inconsistent KNN size in webGPU.
|
|
14
|
+
|
|
3
15
|
## 1.1.24 (2024-05-09)
|
|
4
16
|
|
|
5
17
|
* Fix GPU description nullish value.
|
package/README.md
CHANGED
|
@@ -15,3 +15,4 @@ EDA is a [package](https://datagrok.ai/help/develop/#packages) for the [Datagrok
|
|
|
15
15
|
* One-way ANOVA ([link](https://en.wikipedia.org/wiki/One-way_analysis_of_variance))
|
|
16
16
|
* Missing data imputation
|
|
17
17
|
* k-nearest neighbors method ([KNN](https://en.wikipedia.org/wiki/K-nearest_neighbors_algorithm))
|
|
18
|
+
* [Linear regression](https://en.wikipedia.org/wiki/Linear_regression)
|
|
Binary file
|