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.
17 lines
648 B
17 lines
648 B
/**
|
|
* The library's settings configuration object.
|
|
*
|
|
* Contains default parameters for currency and number formatting
|
|
*/
|
|
const settings = {
|
|
symbol: '$', // default currency symbol is '$'
|
|
format: '%s%v', // controls output: %s = symbol, %v = value (can be object, see docs)
|
|
decimal: '.', // decimal point separator
|
|
thousand: ',', // thousands separator
|
|
precision: 2, // decimal places
|
|
grouping: 3, // digit grouping (not implemented yet)
|
|
stripZeros: false, // strip insignificant zeros from decimal part
|
|
fallback: 0 // value returned on unformat() failure
|
|
};
|
|
|
|
export default settings;
|
|
|