@datagrok/eda 1.4.10 → 1.4.12

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,27 @@
1
1
  # EDA changelog
2
2
 
3
+ ## 1.4.12 (2026-01-16)
4
+
5
+ Implemented
6
+
7
+ * Interactive app for training probabilistic multi-parameter optimization (pMPO) models
8
+ * Export pMPO models to MPO desirability profiles
9
+
10
+ ## 1.4.11 (2025-11-21)
11
+
12
+ Implemented
13
+
14
+ * Pareto front viewer
15
+ * Pareto optimization app
16
+
17
+ ## 1.4.10 (2025-11-05)
18
+
19
+ Correct MCL worker termination
20
+
21
+ ## 1.4.9 (2025-11-04)
22
+
23
+ Updated ML lib
24
+
3
25
  ## 1.4.8 (2025-10-15)
4
26
 
5
27
  Updated tutorials
package/README.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # EDA
2
2
 
3
+ [![Docs: Predictive Modeling](https://img.shields.io/badge/docs-Predictive%20Modeling-blue.svg)](https://datagrok.ai/help/learn/)
4
+ [![Docs: Dimensionality Reduction](https://img.shields.io/badge/docs-Dimensionality%20Reduction-green.svg)](https://datagrok.ai/help/explore/dim-reduction)
5
+ [![Docs: Cluster Data](https://img.shields.io/badge/docs-Cluster%20Data-yellow.svg)](https://datagrok.ai/help/explore/cluster-data)
6
+ [![Docs: Multivariate Analysis](https://img.shields.io/badge/docs-Multivariate%20Analysis-red.svg)](https://datagrok.ai/help/explore/multivariate-analysis)
7
+ [![Docs: ANOVA](https://img.shields.io/badge/docs-ANOVA-purple.svg)](https://datagrok.ai/help/explore/anova)
8
+ [![Tutorial: Multivariate Analysis](https://img.shields.io/badge/tutorial-Multivariate%20Analysis-olive.svg)](https://public.datagrok.ai/apps/tutorials/Tutorials/MachineLearning/MultivariateAnalysis)
9
+
3
10
  EDA is a [package](https://datagrok.ai/help/develop/#packages) for the [Datagrok](https://datagrok.ai) platform. It provides the following exploratory data analysis and machine learning tools:
4
11
 
5
12
  * Dimensionality reduction
@@ -20,3 +27,6 @@ EDA is a [package](https://datagrok.ai/help/develop/#packages) for the [Datagrok
20
27
  * One-way ANOVA ([link](https://en.wikipedia.org/wiki/One-way_analysis_of_variance))
21
28
  * Missing data imputation
22
29
  * k-nearest neighbors method ([KNN](https://en.wikipedia.org/wiki/K-nearest_neighbors_algorithm))
30
+ * Multi-objective optimization
31
+ * [Pareto front](https://en.wikipedia.org/wiki/Pareto_front) viewer
32
+ * [Probabilistic MPO](https://pmc.ncbi.nlm.nih.gov/articles/PMC4716604/)
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
+ }
package/css/pmpo.css ADDED
@@ -0,0 +1,26 @@
1
+ .eda-pmpo-tooltip-line {
2
+ display: flex;
3
+ align-items: center;
4
+ gap: 6px;
5
+ margin-left: 6px;
6
+ }
7
+
8
+ .eda-pmpo-box {
9
+ width: 10px;
10
+ height: 10px;
11
+ }
12
+
13
+ .eda-pmpo-input-form {
14
+ padding-left: 10px;
15
+ padding-right: 5px;
16
+ }
17
+
18
+ .eda-pmpo-title {
19
+ font-size: 14.5px;
20
+ position: absolute;
21
+ top: 50%;
22
+ left: 50%;
23
+ transform: translate(-50%, -50%);
24
+ pointer-events: none;
25
+ white-space: nowrap;
26
+ }