@datagrok/eda 1.2.4 → 1.2.5
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 +6 -0
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +96 -1
- package/src/pls/pls-tools.ts +1 -1
package/package.json
CHANGED
|
@@ -1 +1,96 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "@datagrok/eda",
|
|
3
|
+
"friendlyName": "EDA",
|
|
4
|
+
"version": "1.2.5",
|
|
5
|
+
"description": "Exploratory Data Analysis Tools",
|
|
6
|
+
"dependencies": {
|
|
7
|
+
"@datagrok-libraries/math": "^1.2.0",
|
|
8
|
+
"@datagrok-libraries/ml": "^6.7.0",
|
|
9
|
+
"@datagrok-libraries/tutorials": "^1.4.2",
|
|
10
|
+
"@datagrok-libraries/utils": "^4.3.0",
|
|
11
|
+
"@keckelt/tsne": "^1.0.2",
|
|
12
|
+
"@webgpu/types": "^0.1.40",
|
|
13
|
+
"cash-dom": "^8.1.1",
|
|
14
|
+
"datagrok-api": "^1.22.0",
|
|
15
|
+
"dayjs": "^1.11.9",
|
|
16
|
+
"jstat": "^1.9.6",
|
|
17
|
+
"source-map-loader": "^4.0.1",
|
|
18
|
+
"umap-js": "^1.3.3",
|
|
19
|
+
"worker-loader": "^3.0.8"
|
|
20
|
+
},
|
|
21
|
+
"author": {
|
|
22
|
+
"name": "Viktor Makarichev",
|
|
23
|
+
"email": "vmakarichev@datagrok.ai"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^5.32.0",
|
|
27
|
+
"@typescript-eslint/parser": "^5.32.0",
|
|
28
|
+
"css-loader": "^7.1.2",
|
|
29
|
+
"eslint": "^8.21.0",
|
|
30
|
+
"eslint-config-google": "^0.14.0",
|
|
31
|
+
"style-loader": "^4.0.0",
|
|
32
|
+
"ts-loader": "^9.5.1",
|
|
33
|
+
"typescript": "^5.6.3",
|
|
34
|
+
"webpack": "^5.95.0",
|
|
35
|
+
"webpack-cli": "^5.1.4"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"link-all": "npm link datagrok-api @datagrok-libraries/utils @datagrok-libraries/tutorials",
|
|
39
|
+
"debug-eda": "webpack && grok publish",
|
|
40
|
+
"release-eda": "webpack && grok publish --release",
|
|
41
|
+
"build-eda": "webpack",
|
|
42
|
+
"build": "webpack",
|
|
43
|
+
"test": "grok test",
|
|
44
|
+
"debug-eda-dev": "webpack && grok publish dev",
|
|
45
|
+
"release-eda-dev": "webpack && grok publish dev --release",
|
|
46
|
+
"debug-eda-local": "webpack && grok publish local",
|
|
47
|
+
"release-eda-local": "webpack && grok publish local --release",
|
|
48
|
+
"build-all": "npm --prefix ./../../js-api run build && npm --prefix ./../../libraries/utils run build && npm --prefix ./../../libraries/tutorials run build && npm run build"
|
|
49
|
+
},
|
|
50
|
+
"canEdit": [
|
|
51
|
+
"Developers"
|
|
52
|
+
],
|
|
53
|
+
"canView": [
|
|
54
|
+
"All users"
|
|
55
|
+
],
|
|
56
|
+
"repository": {
|
|
57
|
+
"type": "git",
|
|
58
|
+
"url": "https://github.com/datagrok-ai/public.git",
|
|
59
|
+
"directory": "packages/EDA"
|
|
60
|
+
},
|
|
61
|
+
"category": "Machine Learning",
|
|
62
|
+
"sources": [
|
|
63
|
+
"wasm/EDA.js",
|
|
64
|
+
"wasm/XGBoostAPI.js"
|
|
65
|
+
],
|
|
66
|
+
"meta": {
|
|
67
|
+
"menu": {
|
|
68
|
+
"ML": {
|
|
69
|
+
"Tools": {
|
|
70
|
+
"Impute Missing Values...": null,
|
|
71
|
+
"Random Data...": null
|
|
72
|
+
},
|
|
73
|
+
"Cluster": {
|
|
74
|
+
"Cluster...": null,
|
|
75
|
+
"DBSCAN...": null
|
|
76
|
+
},
|
|
77
|
+
"Notebooks": {
|
|
78
|
+
"Browse Notebooks": null,
|
|
79
|
+
"Open in Notebook": null,
|
|
80
|
+
"New Notebook": null
|
|
81
|
+
},
|
|
82
|
+
"Models": {
|
|
83
|
+
"Browse Models": null,
|
|
84
|
+
"Train Model...": null,
|
|
85
|
+
"Apply Model...": null
|
|
86
|
+
},
|
|
87
|
+
"Analyse": {
|
|
88
|
+
"PCA...": null,
|
|
89
|
+
"ANOVA...": null,
|
|
90
|
+
"Multivariate Analysis...": null
|
|
91
|
+
},
|
|
92
|
+
"Reduce Dimensionality": null
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
package/src/pls/pls-tools.ts
CHANGED
|
@@ -212,7 +212,7 @@ async function performMVA(input: PlsInput, analysisType: PLS_ANALYSIS): Promise<
|
|
|
212
212
|
});
|
|
213
213
|
|
|
214
214
|
if ((input.names !== undefined) && (input.names !== null))
|
|
215
|
-
|
|
215
|
+
scoresScatter.setOptions({labelFormColumnNames: [input.names?.name]});
|
|
216
216
|
|
|
217
217
|
// 4.3) create lines & circles
|
|
218
218
|
scoresScatter.meta.formulaLines.addAll(getLines(scoreNames));
|