@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 +22 -0
- package/README.md +10 -0
- package/css/pareto.css +5 -0
- package/css/pmpo.css +26 -0
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/eslintrc.json +46 -0
- package/files/drugs-props-test.csv +126 -0
- package/files/drugs-props-train.csv +664 -0
- package/files/mpo-done.ipynb +2123 -0
- package/icons/pareto-front-viewer.svg +15 -0
- package/package.json +3 -1
- package/src/anova/anova-tools.ts +1 -1
- package/src/anova/anova-ui.ts +1 -1
- package/src/package-api.ts +28 -0
- package/src/package.g.ts +33 -4
- package/src/package.ts +261 -253
- 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 +41 -0
- package/src/probabilistic-scoring/pmpo-defs.ts +108 -0
- package/src/probabilistic-scoring/pmpo-utils.ts +580 -0
- package/src/probabilistic-scoring/prob-scoring.ts +637 -0
- package/src/probabilistic-scoring/stat-tools.ts +168 -0
- package/src/softmax-classifier.ts +1 -1
- package/test-console-output-1.log +70 -50
- package/test-record-1.mp4 +0 -0
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
|
+
[](https://datagrok.ai/help/learn/)
|
|
4
|
+
[](https://datagrok.ai/help/explore/dim-reduction)
|
|
5
|
+
[](https://datagrok.ai/help/explore/cluster-data)
|
|
6
|
+
[](https://datagrok.ai/help/explore/multivariate-analysis)
|
|
7
|
+
[](https://datagrok.ai/help/explore/anova)
|
|
8
|
+
[](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
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
|
+
}
|