We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Find the values that appear most often.
Similar: mean, median, modes, variance, range.
function modes(...xs) // xs: a list of numbers
const xmath = require('extra-math'); xmath.modes(1, 2); // → [1, 2] xmath.modes(1, 2, 2); // → [2] xmath.modes(1, 2, 2, 3, 3); // → [2, 3]
There was an error while loading. Please reload this page.