StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
530 B
18 lines
530 B
4 years ago
|
// --- Static ---
|
||
|
export var from = function from() {
|
||
|
return Array.from.apply(Array, arguments);
|
||
|
};
|
||
|
export var isArray = function isArray(val) {
|
||
|
return Array.isArray(val);
|
||
|
}; // --- Instance ---
|
||
|
|
||
|
export var arrayIncludes = function arrayIncludes(array, value) {
|
||
|
return array.indexOf(value) !== -1;
|
||
|
};
|
||
|
export var concat = function concat() {
|
||
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
||
|
args[_key] = arguments[_key];
|
||
|
}
|
||
|
|
||
|
return Array.prototype.concat.apply([], args);
|
||
|
};
|