| | Element index for package Math_Stats[ a ]
	[ b ]
	[ c ]
	[ f ]
	[ g ]
	[ h ]
	[ i ]
	[ k ]
	[ m ]
	[ p ]
	[ q ]
	[ r ]
	[ s ]
	[ v ]
	[ _ ]
 
		top_
							$_calculatedValuesin file Stats.php, variable Base::$_calculatedValuesArray for caching result values, should be reset  when using setData()
$_datain file Stats.php, variable Base::$_dataThe simple or cummulative data set.
$_dataExpandedin file Stats.php, variable Base::$_dataExpandedExpanded data set. Only set when cummulative data  is being used. Null by default.
$_dataOptionin file Stats.php, variable Base::$_dataOptionFlag for data type, one of STATS_DATA_SIMPLE or  STATS_DATA_CUMMULATIVE. Null by default.
$_nullOptionin file Stats.php, variable Base::$_nullOptionFlag for null handling options. One of STATS_REJECT_NULL,  STATS_IGNORE_NULL or STATS_USE_NULL_AS_ZERO
 
 
 
		topa
							absDevin file Stats.php, method Base::absDev()Calculates the absolute deviation of the data points in the set  Handles cummulative data sets correctly
absDevWithMeanin file Stats.php, method Base::absDevWithMean()Calculates the absolute deviation of the data points in the set  given a fixed mean (average) value. Not used in calcBasic(), calcFull()  or calc().
 
 
 
		topb
							Basein file Stats.php, class BaseA class to calculate descriptive statistics from a data set.
 
 
 
		topc
							calcin file Stats.php, method Base::calc()Calculates the basic or full statistics for the data set
calcBasicin file Stats.php, method Base::calcBasic()Calculates a basic set of statistics
calcFullin file Stats.php, method Base::calcFull()Calculates a full set of statistics
centerin file Stats.php, method Base::center()Transforms the data by substracting each entry from the mean.
coeffOfVariationin file Stats.php, method Base::coeffOfVariation()Calculates the coefficient of variation of a data set.
countin file Stats.php, method Base::count()Calculates the number of data points in the set  Handles cummulative data sets correctly
 
 
 
		topf
							frequencyin file Stats.php, method Base::frequency()Calculates the value frequency table of a data set.
 
 
 
		topg
							geometricMeanin file Stats.php, method Base::geometricMean()Calculates the geometrical mean of the data points in the set  Handles cummulative data sets correctly
getDatain file Stats.php, method Base::getData()Returns the data which might have been modified  according to the current null handling options.
 
 
 
		toph
							harmonicMeanin file Stats.php, method Base::harmonicMean()Calculates the harmonic mean of the data points in the set  Handles cummulative data sets correctly
 
 
 
		topi
							interquartileMeanin file Stats.php, method Base::interquartileMean()The interquartile mean is defined as the mean of the values left  after discarding the lower 25% and top 25% ranked values, i.e.:
interquartileRangein file Stats.php, method Base::interquartileRange()The interquartile range is the distance between the 75th and 25th  percentiles. Basically the range of the middle 50% of the data set,  and thus is not affected by outliers or extreme values.
 
 
 
		topk
							kurtosisin file Stats.php, method Base::kurtosis()Calculates the kurtosis of the data distribution in the set  The kurtosis measures the degrees of peakedness of a distribution.
 
 
 
		topm
							Math_Statsin file Stats.php, method Base::Math_Stats()Constructor for the class
maxin file Stats.php, method Base::max()Calculates the maximum of a data set.
meanin file Stats.php, method Base::mean()Calculates the mean (average) of the data points in the set  Handles cummulative data sets correctly
medianin file Stats.php, method Base::median()Calculates the median of a data set.
midrangein file Stats.php, method Base::midrange()Calculates the midrange of a data set.
minin file Stats.php, method Base::min()Calculates the minimum of a data set.
modein file Stats.php, method Base::mode()Calculates the mode of a data set.
 
 
 
		topp
							percentilein file Stats.php, method Base::percentile()The pth percentile is the value such that p% of the a sorted data set  is smaller than it, and (100 - p)% of the data is larger.
productin file Stats.php, method Base::product()Calculates PROD { (xi) }, (the product of all observations)  Handles cummulative data sets correctly
productNin file Stats.php, method Base::productN()Calculates PROD { (xi)^n }, which is the product of all observations  Handles cummulative data sets correctly
 
 
 
		topq
							quartileDeviationin file Stats.php, method Base::quartileDeviation()The quartile deviation is half of the interquartile range value
quartilesin file Stats.php, method Base::quartiles()The quartiles are defined as the values that divide a sorted  data set into four equal-sized subsets, and correspond to the  25th, 50th, and 75th percentiles.
quartileSkewnessCoefficientin file Stats.php, method Base::quartileSkewnessCoefficient()The quartile skewness coefficient (also known as Bowley Skewness),  is defined as follows:
quartileVariationCoefficientin file Stats.php, method Base::quartileVariationCoefficient()The quartile variation coefficient is defines as follows:
 
 
 
		topr
							rangein file Stats.php, method Base::range()Calculates the range of the data set = max - min
 
 
 
		tops
							Stats.phpprocedural page Stats.phpsampleCentralMomentin file Stats.php, method Base::sampleCentralMoment()Calculates the nth central moment (m{n}) of a data set.
sampleRawMomentin file Stats.php, method Base::sampleRawMoment()Calculates the nth raw moment (m{n}) of a data set.
setDatain file Stats.php, method Base::setData()Sets and verifies the data, checking for nulls and using  the current null handling option
setNullOptionin file Stats.php, method Base::setNullOption()Sets the null handling option.
skewnessin file Stats.php, method Base::skewness()Calculates the skewness of the data distribution in the set  The skewness measures the degree of asymmetry of a distribution,  and is related to the third central moment of a distribution.
STATS_BASICin file Stats.php, constant STATS_BASICSTATS_BASIC to generate the basic descriptive statistics
STATS_DATA_CUMMULATIVEin file Stats.php, constant STATS_DATA_CUMMULATIVESTATS_DATA_CUMMULATIVE for an associative array of frequency values,
STATS_DATA_SIMPLEin file Stats.php, constant STATS_DATA_SIMPLESTATS_DATA_SIMPLE for an array of numeric values. This is the default.
STATS_FULLin file Stats.php, constant STATS_FULLSTATS_FULL to generate also higher moments, mode, median, etc.
STATS_IGNORE_NULLin file Stats.php, constant STATS_IGNORE_NULLSTATS_IGNORE_NULL, ignore null values and prune them from the data.
STATS_REJECT_NULLin file Stats.php, constant STATS_REJECT_NULLSTATS_REJECT_NULL, reject data sets with null values. This is the default.
STATS_USE_NULL_AS_ZEROin file Stats.php, constant STATS_USE_NULL_AS_ZEROSTATS_USE_NULL_AS_ZERO, assign the value of 0 (zero) to null values.
stdErrorOfMeanin file Stats.php, method Base::stdErrorOfMean()Calculates the standard error of the mean.
stDevin file Stats.php, method Base::stDev()Calculates the standard deviation (unbiased) of the data points in the set  Handles cummulative data sets correctly
stDevWithMeanin file Stats.php, method Base::stDevWithMean()Calculates the standard deviation (unbiased) of the data points in the set  given a fixed mean (average) value. Not used in calcBasic(), calcFull()  or calc().
studentizein file Stats.php, method Base::studentize()Transforms the data by substracting each entry from the mean and  dividing by its standard deviation. This will reset all pre-calculated  values to their original (unset) defaults.
sumin file Stats.php, method Base::sum()Calculates SUM { xi }  Handles cummulative data sets correctly
sum2in file Stats.php, method Base::sum2()Calculates SUM { (xi)^2 }  Handles cummulative data sets correctly
sumNin file Stats.php, method Base::sumN()Calculates SUM { (xi)^n }  Handles cummulative data sets correctly
 
 
 
		topv
							variancein file Stats.php, method Base::variance()Calculates the variance (unbiased) of the data points in the set  Handles cummulative data sets correctly
varianceWithMeanin file Stats.php, method Base::varianceWithMean()Calculates the variance (unbiased) of the data points in the set  given a fixed mean (average) value. Not used in calcBasic(), calcFull()  or calc().
 
 | 
 |