Skip to main content
Module

x/simplestatistics/index.js>extent

simple statistics for node & browser javascript
Go to Latest
function extent
import { extent } from "https://deno.land/x/simplestatistics@v7.7.5/index.js";

This computes the minimum & maximum number in an array.

This runs in O(n), linear time, with respect to the length of the array.

Examples

extent([1, 2, 3, 4]); // => [1, 4]

Parameters

x

sample of one or more data points