Location, Ranking, and Exploratory Summaries
10 algorithms in Financial Mathematics, Statistics, and Data Foundations · 10 with asserted arithmetic.
In this family#
-
Count, Sum, Minimum, Maximum, and Range verified
countSumMinimumMaximumAndRange(input) -
Arithmetic Mean verified
arithmeticMean(input) -
Weighted Mean verified
weightedMean(input) -
Median and Mode verified
medianAndMode(input) -
Trimmed and Winsorized Means verified
trimmedAndWinsorizedMeans(input) -
Percentiles, Quantiles, and Quartiles verified
percentilesQuantilesAndQuartiles(input) -
Ranks, Ties, and Percentile Rank verified
ranksTiesAndPercentileRank(input) -
Frequency Tables and Relative Frequency verified
frequencyTablesAndRelativeFrequency(input) -
Histograms and Empirical Distribution Functions verified
histogramsAndEmpiricalDistributionFunctions(input) -
Five-Number Summary and Box Plot verified
fiveNumberSummaryAndBoxPlot(input)
What they share#
Every topic here is a record-transform, so once you have
called one the rest follow the same shape. Import paths differ only in the final segment:
import { countSumMinimumMaximumAndRange } from "fintech-algorithms/financial-mathematics-statistics-and-data-foundations/location-ranking-and-exploratory-summaries/count-sum-minimum-maximum-and-range";
import { arithmeticMean } from "fintech-algorithms/financial-mathematics-statistics-and-data-foundations/location-ranking-and-exploratory-summaries/arithmetic-mean";Read them in the order above — the sequence is pedagogical, not alphabetical.
Where this sits#
Financial Mathematics, Statistics, and Data Foundations collects 120 algorithms across 12 families. For the concept behind this family rather than the call signatures, see the concept guides.