NumberF.Statistics (NumberF v0.1.3)

View Source

Functions for statistical calculations and analysis of numerical data.

Summary

Functions

Calculates the arithmetic mean of a list of numbers.

Finds the median value from a list of numbers.

Finds the most frequently occurring value(s) in a list.

Calculates the range (difference between max and min values).

Calculates standard deviation of a dataset.

Calculates the variance of a dataset.

Functions

mean(numbers)

Calculates the arithmetic mean of a list of numbers.

median(numbers)

Finds the median value from a list of numbers.

mode(numbers)

Finds the most frequently occurring value(s) in a list.

range(numbers)

Calculates the range (difference between max and min values).

standard_deviation(numbers)

Calculates standard deviation of a dataset.

variance(numbers)

Calculates the variance of a dataset.