@datagrok/eda 1.4.11 → 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,12 @@
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
+
3
10
  ## 1.4.11 (2025-11-21)
4
11
 
5
12
  Implemented
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
@@ -22,3 +29,4 @@ EDA is a [package](https://datagrok.ai/help/develop/#packages) for the [Datagrok
22
29
  * k-nearest neighbors method ([KNN](https://en.wikipedia.org/wiki/K-nearest_neighbors_algorithm))
23
30
  * Multi-objective optimization
24
31
  * [Pareto front](https://en.wikipedia.org/wiki/Pareto_front) viewer
32
+ * [Probabilistic MPO](https://pmc.ncbi.nlm.nih.gov/articles/PMC4716604/)
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
+ }