Méthode |
Description |
|
IQR ( array $numbers, string $method = 'exclusive' ) : number |
IQR - Interquartile range (midspread, middle fifty)
Convenience wrapper function for interquartileRange. |
|
coefficientOfVariation ( array $numbers ) : number |
Coefficient of variation (cᵥ)
Also known as relative standard deviation (RSD) |
|
describe ( array $numbers, boolean $population = false ) : array |
Get a report of all the descriptive statistics over a list of numbers
Includes mean, median, mode, range, midrange, variance, standard deviation, quartiles, etc. |
|
fiveNumberSummary ( array $numbers ) : array |
Five number summary
A descriptive statistic that provides information about a set of observations. |
|
interquartileRange ( array $numbers, string $method = 'exclusive' ) : number |
IQR - Interquartile range (midspread, middle fifty)
A measure of statistical dispersion. |
|
meanAbsoluteDeviation ( array $numbers ) : numeric |
MAD - mean absolute deviation |
|
medianAbsoluteDeviation ( array $numbers ) : numeric |
MAD - median absolute deviation |
|
midhinge ( array $numbers ) : number |
Midhinge
The average of the first and third quartiles and is thus a measure of location. |
|
midrange ( array $numbers ) : number |
Midrange - the mean of the largest and smallest values
It is the midpoint of the range; as such, it is a measure of central tendency. |
|
percentile ( array $numbers, integer $P ) : number |
Compute the P-th percentile of a list of numbers |
|
populationVariance ( array $numbers ) : numeric |
Population variance - Use when all possible observations of the system are present. |
|
quartiles ( array $numbers, string $method = 'exclusive' ) : array |
Quartiles
Three points that divide the data set into four equal groups, each group comprising a quarter of the data. |
|
quartilesExclusive ( array $numbers ) : array |
Quartiles - Exclusive method
Three points that divide the data set into four equal groups, each group comprising a quarter of the data. |
|
quartilesInclusive ( array $numbers ) : array |
Quartiles - Inclusive method (R method)
Three points that divide the data set into four equal groups, each group comprising a quarter of the data. |
|
range ( array $numbers ) : number |
Range - the difference between the largest and smallest values
It is the size of the smallest interval which contains all the data. |
|
sampleVariance ( array $numbers ) : numeric |
Unbiased sample variance
Use when only a subset of all possible observations of the system are present. |
|
sd ( array $numbers, boolean $SD+ = false ) : numeric |
sd - Standard deviation - convenience method |
|
standardDeviation ( array $numbers, boolean $SD+ = false ) : numeric |
Standard deviation
A measure that is used to quantify the amount of variation or dispersion of a set of data values. |
|
variance ( array $numbers, integer $ν ) : numeric |
Variance |
|