@datagrok/eda 1.4.10 → 1.4.11
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 +15 -0
- package/README.md +2 -0
- package/css/pareto.css +5 -0
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/icons/pareto-front-viewer.svg +15 -0
- package/package.json +1 -1
- package/src/package-api.ts +14 -0
- package/src/package.g.ts +16 -0
- package/src/package.ts +221 -244
- package/src/pareto-optimization/defs.ts +45 -0
- package/src/pareto-optimization/pareto-computations.ts +65 -0
- package/src/pareto-optimization/pareto-front-viewer.ts +490 -0
- package/src/pareto-optimization/pareto-optimizer.ts +272 -0
- package/src/pareto-optimization/utils.ts +39 -0
- package/test-console-output-1.log +46 -56
- package/test-record-1.mp4 +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# EDA changelog
|
|
2
2
|
|
|
3
|
+
## 1.4.11 (2025-11-21)
|
|
4
|
+
|
|
5
|
+
Implemented
|
|
6
|
+
|
|
7
|
+
* Pareto front viewer
|
|
8
|
+
* Pareto optimization app
|
|
9
|
+
|
|
10
|
+
## 1.4.10 (2025-11-05)
|
|
11
|
+
|
|
12
|
+
Correct MCL worker termination
|
|
13
|
+
|
|
14
|
+
## 1.4.9 (2025-11-04)
|
|
15
|
+
|
|
16
|
+
Updated ML lib
|
|
17
|
+
|
|
3
18
|
## 1.4.8 (2025-10-15)
|
|
4
19
|
|
|
5
20
|
Updated tutorials
|
package/README.md
CHANGED
|
@@ -20,3 +20,5 @@ EDA is a [package](https://datagrok.ai/help/develop/#packages) for the [Datagrok
|
|
|
20
20
|
* One-way ANOVA ([link](https://en.wikipedia.org/wiki/One-way_analysis_of_variance))
|
|
21
21
|
* Missing data imputation
|
|
22
22
|
* k-nearest neighbors method ([KNN](https://en.wikipedia.org/wiki/K-nearest_neighbors_algorithm))
|
|
23
|
+
* Multi-objective optimization
|
|
24
|
+
* [Pareto front](https://en.wikipedia.org/wiki/Pareto_front) viewer
|