@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 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
package/css/pareto.css ADDED
@@ -0,0 +1,5 @@
1
+ .pareto-input-form {
2
+ padding-left: 12px;
3
+ overflow-y: scroll;
4
+ padding-right: 4px;
5
+ }