Method |
Description |
|
SEK ( integer $n ) : number |
Standard Error of Kurtosis (SEK) |
|
SES ( integer $n ) : number |
Standard Error of Skewness (SES) |
|
centralMoment ( array $X, array $n ) : number |
n-th Central moment
A moment of a probability distribution of a random variable about the random variable's mean. |
|
confidenceInterval ( number $μ, number $n, number $σ, string $cl ) : array |
Confidence interval
Finds CI given a sample mean, sample size, and standard deviation. |
|
isLeptokurtic ( array $X ) : boolean |
Is the kurtosis postive? (Leptokurtic)
Indicates a peaked distribution. |
|
isMesokurtic ( array $X ) : boolean |
Is the kurtosis zero? (Mesokurtic)
Indicates a normal distribution. |
|
isPlatykurtic ( array $X ) : boolean |
Is the kurtosis negative? (Platykurtic)
Indicates a flat distribution. |
|
kurtosis ( array $X ) : number |
Excess Kurtosis
A measure of the "tailedness" of the probability distribution of a real-valued random variable. |
|
populationSkewness ( array $X ) : number |
Popluation skewness
A measure of the asymmetry of the probability distribution of a real-valued random variable about its mean. |
|
sampleSkewness ( array $X ) : number |
Sample skewness
A measure of the asymmetry of the probability distribution of a real-valued random variable about its mean. |
|
sem ( array $X ) : float |
SEM - Convenience method for standard error of the mean |
|
skewness ( array $X ) : number |
Skewness (alternative method)
This method tends to match most of the online skewness calculators and examples. |
|
standardErrorOfTheMean ( array $X ) : float |
Standard error of the mean (SEM)
The standard deviation of the sample-mean's estimate of a population mean. |
|
sumOfSquares ( array $numbers ) : number |
Sum of squares |
|
sumOfSquaresDeviations ( array $numbers ) : number |
Sum of squares deviations |
|