2022-01-29 21:06:16 +00:00
|
|
|
import crypto from "crypto";
|
2021-09-22 20:24:31 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
export const hashString = (string) =>
|
|
|
|
crypto.createHash("md5").update(string).digest("hex");
|
|
|
|
const id = (x) => x;
|
|
|
|
export const transformSliderValueToActualValue = id;
|
|
|
|
export const transformSliderValueToPracticalValue = id;
|
2021-10-06 14:05:11 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
export const _transformSliderValueToActualValue = (value) => 10 ** value; //>= 2 ? Math.round(10 ** value) : Math.round(10 * 10 ** value) / 10
|
|
|
|
export const toLocale = (x) => Number(x).toLocaleString();
|
|
|
|
export const truncateValueForDisplay = (value) => {
|
|
|
|
if (value > 10) {
|
|
|
|
return Number(Math.round(value).toPrecision(2));
|
|
|
|
} else if (value > 1) {
|
|
|
|
return Math.round(value * 10) / 10;
|
2022-01-29 22:45:23 +00:00
|
|
|
} else if (value <= 1) {
|
|
|
|
return value;
|
2022-01-29 21:06:16 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
export const _transformSliderValueToPracticalValue = (value) =>
|
|
|
|
truncateValueForDisplay(transformSliderValueToActualValue(value));
|
2021-11-25 00:42:34 +00:00
|
|
|
|
2022-01-28 18:48:47 +00:00
|
|
|
export function sleep(ms) {
|
2022-01-29 21:06:16 +00:00
|
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
2022-01-28 18:48:47 +00:00
|
|
|
}
|
|
|
|
|
2021-11-28 15:33:19 +00:00
|
|
|
export function numToAlphabeticalString(num) {
|
2022-01-29 21:06:16 +00:00
|
|
|
// https://stackoverflow.com/questions/45787459/convert-number-to-alphabet-string-javascript/45787487
|
|
|
|
num = num + 1;
|
|
|
|
var s = "",
|
|
|
|
t;
|
|
|
|
while (num > 0) {
|
|
|
|
t = (num - 1) % 26;
|
|
|
|
s = String.fromCharCode(65 + t) + s;
|
|
|
|
num = ((num - t) / 26) | 0;
|
|
|
|
}
|
|
|
|
return `#${s}` || undefined;
|
2021-11-25 00:42:34 +00:00
|
|
|
}
|
2021-11-25 15:08:20 +00:00
|
|
|
|
2022-05-24 18:46:21 +00:00
|
|
|
let topOutAt100AndValidate = (x) => {
|
|
|
|
// return 10;
|
|
|
|
if (x == x) {
|
|
|
|
return x > 99 ? 99 : x < 0 ? 2 : x;
|
|
|
|
} else {
|
|
|
|
return 10;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-11-28 15:33:19 +00:00
|
|
|
export function formatLargeOrSmall(num) {
|
2022-01-29 22:45:23 +00:00
|
|
|
let result;
|
|
|
|
if (num >= 1) {
|
|
|
|
result = toLocale(truncateValueForDisplay(num));
|
2022-01-29 21:06:16 +00:00
|
|
|
} else if (num > 0) {
|
2022-05-24 18:46:21 +00:00
|
|
|
let candidateNumSignificantDigits =
|
|
|
|
-Math.floor(Math.log(num) / Math.log(10)) + 1;
|
|
|
|
let numSignificantDigits = topOutAt100AndValidate(
|
|
|
|
candidateNumSignificantDigits
|
|
|
|
);
|
|
|
|
result = num.toFixed(numSignificantDigits);
|
|
|
|
} else if (-1 < num) {
|
|
|
|
let candidateNumSignificantDigits =
|
|
|
|
-Math.floor(Math.log(Math.abs(num)) / Math.log(10)) + 1;
|
|
|
|
let numSignificantDigits = topOutAt100AndValidate(
|
|
|
|
candidateNumSignificantDigits
|
|
|
|
);
|
|
|
|
result = num.toFixed(numSignificantDigits);
|
|
|
|
} else if (num <= -1) {
|
|
|
|
result = "-" + toLocale(truncateValueForDisplay(-num));
|
2022-01-29 21:06:16 +00:00
|
|
|
} else {
|
2022-01-29 22:45:23 +00:00
|
|
|
result = toLocale(num); //return "~0"
|
2022-01-29 21:06:16 +00:00
|
|
|
}
|
2022-01-29 22:45:23 +00:00
|
|
|
|
|
|
|
console.log(`${num} -> ${result}`);
|
|
|
|
return result;
|
2021-11-25 15:08:20 +00:00
|
|
|
}
|
2022-01-29 21:06:16 +00:00
|
|
|
const firstFewMaxMergeSortSequence = [
|
|
|
|
0, 0, 1, 3, 5, 8, 11, 14, 17, 21, 25, 29, 33, 37, 41, 45, 49, 54, 59, 64, 69,
|
|
|
|
74, 79, 84, 89, 94, 99, 104, 109, 114, 119, 124, 129, 135, 141, 147, 153, 159,
|
|
|
|
165, 171, 177, 183, 189, 195, 201, 207, 213, 219, 225, 231, 237, 243, 249,
|
|
|
|
255, 261, 267, 273, 279, 285,
|
|
|
|
];
|
2021-11-28 15:33:19 +00:00
|
|
|
|
|
|
|
export function maxMergeSortSteps(n) {
|
2022-01-29 21:06:16 +00:00
|
|
|
if (n < firstFewMaxMergeSortSequence.length) {
|
|
|
|
return firstFewMaxMergeSortSequence[n];
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
maxMergeSortSteps(Math.floor(n / 2)) +
|
|
|
|
maxMergeSortSteps(Math.ceil(n / 2)) +
|
|
|
|
n -
|
|
|
|
1
|
|
|
|
);
|
|
|
|
}
|
2021-11-28 15:33:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function expectedNumMergeSortSteps(n) {
|
2022-01-29 21:06:16 +00:00
|
|
|
// https://cs.stackexchange.com/questions/82862/expected-number-of-comparisons-in-a-merge-step
|
|
|
|
// n-2 for each step, so (n-2) + (n-2)/2 + (n-2)/4 + ...
|
|
|
|
// ~ 2*(n-2) -1 = 2*n - 3
|
|
|
|
if (n == 0) {
|
|
|
|
return 0;
|
|
|
|
} else if (n == 1) {
|
|
|
|
return 0;
|
|
|
|
} else if (n == 2) {
|
|
|
|
return 1;
|
|
|
|
} else if (n == 3) {
|
|
|
|
return 2;
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
Math.ceil(n ** 2 / (n + 2)) + expectedNumMergeSortSteps(Math.ceil(n / 2))
|
|
|
|
);
|
|
|
|
}
|
2021-12-08 11:35:18 +00:00
|
|
|
}
|
|
|
|
|
2022-01-29 22:45:23 +00:00
|
|
|
const sum = (arr) => arr.reduce((a, b) => a + b, 0);
|
|
|
|
|
|
|
|
export const avg = (arr) => sum(arr) / arr.length;
|
|
|
|
|
|
|
|
export const geomMean = (arr) => {
|
|
|
|
let n = arr.length;
|
|
|
|
let logavg = sum(arr.map((x) => Math.log(x))); // works for low numbers much better
|
|
|
|
let result = Math.exp(logavg / n);
|
|
|
|
return result;
|
|
|
|
};
|
2022-01-29 21:06:16 +00:00
|
|
|
|
2022-04-11 18:08:35 +00:00
|
|
|
export const hackyGeomMean = (arr) => {
|
|
|
|
let nonPositiveNumbers = arr.filter((x) => x <= 0);
|
|
|
|
if (nonPositiveNumbers.length == 0) {
|
|
|
|
return geomMean(arr);
|
|
|
|
} else {
|
|
|
|
return avg(arr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-01-30 15:26:05 +00:00
|
|
|
export function conservativeNumMergeSortSteps(n) {
|
|
|
|
return Math.ceil((expectedNumMergeSortSteps(n) + maxMergeSortSteps(n)) / 2);
|
|
|
|
}
|
2022-01-29 22:45:23 +00:00
|
|
|
// export const geomMean = (arr) => arr.reduce((a, b) => a * b, 1); // ^ (1 / arr.length); // didn't work so well for low numbers.
|
2021-12-08 11:59:17 +00:00
|
|
|
|
2022-01-29 21:06:16 +00:00
|
|
|
export const increasingList = (n) => Array.from(Array(n).keys());
|
2022-04-11 18:39:29 +00:00
|
|
|
|
|
|
|
function getStdev(arr) {
|
|
|
|
if (Array.isArray(arr) && arr.length > 0) {
|
|
|
|
const n = arr.length;
|
|
|
|
const mean = arr.reduce((a, b) => a + b) / n;
|
|
|
|
return Math.sqrt(
|
|
|
|
arr.map((x) => Math.pow(x - mean, 2)).reduce((a, b) => a + b) / n
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const getCoefficientOfVariation = (arr) => {
|
|
|
|
let nonPositiveNumbers = arr.filter((x) => x <= 0);
|
|
|
|
if (nonPositiveNumbers.length == 0) {
|
|
|
|
let gm = geomMean(arr);
|
|
|
|
let stdev = getStdev(arr);
|
|
|
|
return stdev / gm;
|
|
|
|
} else {
|
|
|
|
return getStdev(arr) / avg(arr);
|
|
|
|
}
|
|
|
|
};
|