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.
24 lines
422 B
24 lines
422 B
4 years ago
|
/**
|
||
|
* Format number nicely
|
||
|
*
|
||
|
* @module mumath/loop
|
||
|
*
|
||
|
*/
|
||
|
'use strict';
|
||
|
|
||
|
var precision = require('./precision');
|
||
|
var almost = require('almost-equal');
|
||
|
var normalize = require('./normalize');
|
||
|
|
||
|
module.exports = function (v, prec) {
|
||
|
if (almost(v, 0)) return '0';
|
||
|
|
||
|
if (prec == null) {
|
||
|
prec = precision(v);
|
||
|
prec = Math.min(prec, 20);
|
||
|
}
|
||
|
|
||
|
// return v.toFixed(prec);
|
||
|
return v.toFixed(prec);
|
||
|
};
|