@iyulab/u-insight 0.11.0 → 0.12.0
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/package.json +1 -1
- package/u_insight.d.ts +0 -16
- package/u_insight_bg.js +0 -26
- package/u_insight_bg.wasm +0 -0
package/package.json
CHANGED
package/u_insight.d.ts
CHANGED
|
@@ -69,22 +69,6 @@ export function dbscan(data: any, config: any): any;
|
|
|
69
69
|
*/
|
|
70
70
|
export function describe(data: any): any;
|
|
71
71
|
|
|
72
|
-
/**
|
|
73
|
-
* Univariate outlier detection on a flat numeric vector.
|
|
74
|
-
*
|
|
75
|
-
* # Input
|
|
76
|
-
* ```json
|
|
77
|
-
* { "data": [1.0, 2.0, 3.0, 100.0], "method": "iqr" }
|
|
78
|
-
* ```
|
|
79
|
-
* `method` ∈ `{"iqr"|"tukey", "zscore"|"three_sigma", "modified_zscore"|"hampel"}`.
|
|
80
|
-
* Optional, defaults to `"iqr"`.
|
|
81
|
-
*
|
|
82
|
-
* # Output
|
|
83
|
-
* `{ method, indices, scores, count, pct, lower_fence, upper_fence, center, spread }`
|
|
84
|
-
*
|
|
85
|
-
* `method` aliases: `tukey` → IQR Tukey fences (k=1.5), `three_sigma` →
|
|
86
|
-
* mean ± 3·σ, `hampel` → robust median ± 3.5·(MAD/0.6745).
|
|
87
|
-
*/
|
|
88
72
|
export function detect_univariate_outliers(data: any): any;
|
|
89
73
|
|
|
90
74
|
/**
|
package/u_insight_bg.js
CHANGED
|
@@ -100,20 +100,6 @@ export function describe(data) {
|
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
/**
|
|
103
|
-
* Univariate outlier detection on a flat numeric vector.
|
|
104
|
-
*
|
|
105
|
-
* # Input
|
|
106
|
-
* ```json
|
|
107
|
-
* { "data": [1.0, 2.0, 3.0, 100.0], "method": "iqr" }
|
|
108
|
-
* ```
|
|
109
|
-
* `method` ∈ `{"iqr"|"tukey", "zscore"|"three_sigma", "modified_zscore"|"hampel"}`.
|
|
110
|
-
* Optional, defaults to `"iqr"`.
|
|
111
|
-
*
|
|
112
|
-
* # Output
|
|
113
|
-
* `{ method, indices, scores, count, pct, lower_fence, upper_fence, center, spread }`
|
|
114
|
-
*
|
|
115
|
-
* `method` aliases: `tukey` → IQR Tukey fences (k=1.5), `three_sigma` →
|
|
116
|
-
* mean ± 3·σ, `hampel` → robust median ± 3.5·(MAD/0.6745).
|
|
117
103
|
* @param {any} data
|
|
118
104
|
* @returns {any}
|
|
119
105
|
*/
|
|
@@ -385,10 +371,6 @@ export function __wbg_Error_ef53bc310eb298a0(arg0, arg1) {
|
|
|
385
371
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
386
372
|
return ret;
|
|
387
373
|
}
|
|
388
|
-
export function __wbg_Number_6b506e6536831eaa(arg0) {
|
|
389
|
-
const ret = Number(arg0);
|
|
390
|
-
return ret;
|
|
391
|
-
}
|
|
392
374
|
export function __wbg_String_8564e559799eccda(arg0, arg1) {
|
|
393
375
|
const ret = String(arg1);
|
|
394
376
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -431,10 +413,6 @@ export function __wbg___wbindgen_is_object_56732c2bc353f41d(arg0) {
|
|
|
431
413
|
const ret = typeof(val) === 'object' && val !== null;
|
|
432
414
|
return ret;
|
|
433
415
|
}
|
|
434
|
-
export function __wbg___wbindgen_is_undefined_67b456be8673d3d7(arg0) {
|
|
435
|
-
const ret = arg0 === undefined;
|
|
436
|
-
return ret;
|
|
437
|
-
}
|
|
438
416
|
export function __wbg___wbindgen_jsval_eq_1068e624fa87f6ab(arg0, arg1) {
|
|
439
417
|
const ret = arg0 === arg1;
|
|
440
418
|
return ret;
|
|
@@ -484,10 +462,6 @@ export function __wbg_get_unchecked_33f6e5c9e2f2d6b2(arg0, arg1) {
|
|
|
484
462
|
const ret = arg0[arg1 >>> 0];
|
|
485
463
|
return ret;
|
|
486
464
|
}
|
|
487
|
-
export function __wbg_get_with_ref_key_6412cf3094599694(arg0, arg1) {
|
|
488
|
-
const ret = arg0[arg1];
|
|
489
|
-
return ret;
|
|
490
|
-
}
|
|
491
465
|
export function __wbg_instanceof_ArrayBuffer_8f49811467741499(arg0) {
|
|
492
466
|
let result;
|
|
493
467
|
try {
|
package/u_insight_bg.wasm
CHANGED
|
Binary file
|