@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 +7 -0
- package/README.md +8 -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/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 +14 -0
- package/src/package.g.ts +18 -5
- package/src/package.ts +45 -14
- package/src/pareto-optimization/utils.ts +6 -4
- 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 +77 -47
- package/test-record-1.mp4 +0 -0
package/CHANGELOG.md
CHANGED
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
|
|
@@ -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
|
+
}
|