khiops-visualization 11.0.5 → 11.0.7
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/README.md +44 -1
- package/assets/i18n/en.json +0 -1
- package/khiops-webcomponents.bundle.js +2 -2
- package/main.js +1 -1
- package/package.json +1 -1
- package/styles.css +1 -1
- package/styles.js +1 -1
- package/load-file.png +0 -0
package/README.md
CHANGED
|
@@ -1 +1,44 @@
|
|
|
1
|
-
Khiops visualization & covisualization webcomponents
|
|
1
|
+
# Khiops visualization & covisualization webcomponents
|
|
2
|
+
|
|
3
|
+
Khiops Visualization is a visualization plug-in of the data preparation and scoring tool Khiops. Khiops Visualization allows visualizing all analysis results in an intuitive way, providing a quick and easy interpretation of the discovered patterns.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
npm i khiops-visualization
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
<khiops-visualization></khiops-visualization>
|
|
15
|
+
<khiops-covisualization></khiops-covisualization>
|
|
16
|
+
```
|
|
17
|
+
```
|
|
18
|
+
const kv = document.querySelector('khiops-visualization');
|
|
19
|
+
kv.setConfig({
|
|
20
|
+
appSource : 'WEB',
|
|
21
|
+
onFileOpen : function() {
|
|
22
|
+
console.log('fileOpen');
|
|
23
|
+
},
|
|
24
|
+
onCopyData : function(data) {
|
|
25
|
+
console.log(data);
|
|
26
|
+
},
|
|
27
|
+
onCopyImage : function(data) {
|
|
28
|
+
console.log(data);
|
|
29
|
+
},
|
|
30
|
+
onThemeChanged : function(data) {
|
|
31
|
+
console.log(data);
|
|
32
|
+
},
|
|
33
|
+
onReadFile : function(data) {
|
|
34
|
+
console.log(data);
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
kv.setDatas(DATA);
|
|
38
|
+
kv.getDatas();
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
|
|
44
|
+
Khiops visualization & covisualization webcomponents is available under the [BSD 3-Clause Clear License](LICENSE).
|
package/assets/i18n/en.json
CHANGED
|
@@ -71,7 +71,6 @@
|
|
|
71
71
|
"NUMBER_PRECISION": "Significant numbers precision",
|
|
72
72
|
"ONE_DATA_OUT_OF": "One data out of {count} displayed",
|
|
73
73
|
"N_VALUES_MAX": "{count} values maximum displayed",
|
|
74
|
-
"FONT_SIZE": "Interface font size",
|
|
75
74
|
"EXAMPLE": "Example",
|
|
76
75
|
"LOCAL_DATAS": "Local datas",
|
|
77
76
|
"CLEAR_DATA_INSTRUCTIONS": "Delete local cache in case of minor problem",
|