[ class tree: ] [ index: ] [ all elements ]

Index of all elements

[ a ] [ c ] [ e ] [ f ] [ g ] [ h ] [ i ] [ k ] [ m ] [ n ] [ p ] [ q ] [ r ] [ s ] [ v ]

a

absDev
in file Stats.php, method Math_Stats::absDev()
    Calculates the absolute deviation of the data points in the set Handles cummulative data sets correctly
absDevWithMean
in file Stats.php, method Math_Stats::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().
top

c

calc
in file Stats.php, method Math_Stats::calc()
    Calculates the basic or full statistics for the data set
calcBasic
in file Stats.php, method Math_Stats::calcBasic()
    Calculates a basic set of statistics
calcFull
in file Stats.php, method Math_Stats::calcFull()
    Calculates a full set of statistics
center
in file Stats.php, method Math_Stats::center()
    Transforms the data by substracting each entry from the mean.
coeffOfVariation
in file Stats.php, method Math_Stats::coeffOfVariation()
    Calculates the coefficient of variation of a data set.
count
in file Stats.php, method Math_Stats::count()
    Calculates the number of data points in the set Handles cummulative data sets correctly
top

e

ex_stats_bigdataset.php
procedural page ex_stats_bigdataset.php
ex_stats_cummulative_data.php
procedural page ex_stats_cummulative_data.php
ex_stats_simple.php
procedural page ex_stats_simple.php
top

f

frequency
in file Stats.php, method Math_Stats::frequency()
    Calculates the value frequency table of a data set.
f_cumulative_normal_dist.php
procedural page f_cumulative_normal_dist.php
top

g

geometricMean
in file Stats.php, method Math_Stats::geometricMean()
    Calculates the geometrical mean of the data points in the set Handles cummulative data sets correctly
getData
in file Stats.php, method Math_Stats::getData()
    Returns the data which might have been modified according to the current null handling options.
top

h

harmonicMean
in file Stats.php, method Math_Stats::harmonicMean()
    Calculates the harmonic mean of the data points in the set Handles cummulative data sets correctly
top

i

interquartileMean
in file Stats.php, method Math_Stats::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.:
interquartileRange
in file Stats.php, method Math_Stats::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.
top

k

kurtosis
in file Stats.php, method Math_Stats::kurtosis()
    Calculates the kurtosis of the data distribution in the set The kurtosis measures the degrees of peakedness of a distribution.
top

m

Math_Stats
in file Stats.php, class Math_Stats
    A class to calculate descriptive statistics from a data set.
Math_Stats
in file Stats.php, method Math_Stats::Math_Stats()
    Constructor for the class
max
in file Stats.php, method Math_Stats::max()
    Calculates the maximum of a data set.
mean
in file Stats.php, method Math_Stats::mean()
    Calculates the mean (average) of the data points in the set Handles cummulative data sets correctly
median
in file Stats.php, method Math_Stats::median()
    Calculates the median of a data set.
midrange
in file Stats.php, method Math_Stats::midrange()
    Calculates the midrange of a data set.
min
in file Stats.php, method Math_Stats::min()
    Calculates the minimum of a data set.
mode
in file Stats.php, method Math_Stats::mode()
    Calculates the mode of a data set.
top

n

ndist_tabulated.php
procedural page ndist_tabulated.php
normsdist
in file f_cumulative_normal_dist.php, function normsdist()
normsinv
in file f_cumulative_normal_dist.php, function normsinv()
top

p

percentile
in file Stats.php, method Math_Stats::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.
product
in file Stats.php, method Math_Stats::product()
    Calculates PROD { (xi) }, (the product of all observations) Handles cummulative data sets correctly
productN
in file Stats.php, method Math_Stats::productN()
    Calculates PROD { (xi)^n }, which is the product of all observations Handles cummulative data sets correctly
top

q

quartileDeviation
in file Stats.php, method Math_Stats::quartileDeviation()
    The quartile deviation is half of the interquartile range value
quartiles
in file Stats.php, method Math_Stats::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.
quartileSkewnessCoefficient
in file Stats.php, method Math_Stats::quartileSkewnessCoefficient()
    The quartile skewness coefficient (also known as Bowley Skewness), is defined as follows:
quartileVariationCoefficient
in file Stats.php, method Math_Stats::quartileVariationCoefficient()
    The quartile variation coefficient is defined as follows:
top

r

range
in file Stats.php, method Math_Stats::range()
    Calculates the range of the data set = max - min
top

s

Stats.php
procedural page Stats.php
sampleCentralMoment
in file Stats.php, method Math_Stats::sampleCentralMoment()
    Calculates the nth central moment (m{n}) of a data set.
sampleRawMoment
in file Stats.php, method Math_Stats::sampleRawMoment()
    Calculates the nth raw moment (m{n}) of a data set.
setData
in file Stats.php, method Math_Stats::setData()
    Sets and verifies the data, checking for nulls and using the current null handling option
setNullOption
in file Stats.php, method Math_Stats::setNullOption()
    Sets the null handling option.
skewness
in file Stats.php, method Math_Stats::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_BASIC
in file Stats.php, constant STATS_BASIC
    STATS_BASIC to generate the basic descriptive statistics
STATS_DATA_CUMMULATIVE
in file Stats.php, constant STATS_DATA_CUMMULATIVE
    STATS_DATA_CUMMULATIVE for an associative array of frequency values,
STATS_DATA_SIMPLE
in file Stats.php, constant STATS_DATA_SIMPLE
    STATS_DATA_SIMPLE for an array of numeric values. This is the default.
STATS_FULL
in file Stats.php, constant STATS_FULL
    STATS_FULL to generate also higher moments, mode, median, etc.
STATS_IGNORE_NULL
in file Stats.php, constant STATS_IGNORE_NULL
    STATS_IGNORE_NULL, ignore null values and prune them from the data.
STATS_REJECT_NULL
in file Stats.php, constant STATS_REJECT_NULL
    STATS_REJECT_NULL, reject data sets with null values. This is the default.
STATS_USE_NULL_AS_ZERO
in file Stats.php, constant STATS_USE_NULL_AS_ZERO
    STATS_USE_NULL_AS_ZERO, assign the value of 0 (zero) to null values.
stdErrorOfMean
in file Stats.php, method Math_Stats::stdErrorOfMean()
    Calculates the standard error of the mean.
stDev
in file Stats.php, method Math_Stats::stDev()
    Calculates the standard deviation (unbiased) of the data points in the set Handles cummulative data sets correctly
stDevWithMean
in file Stats.php, method Math_Stats::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().
studentize
in file Stats.php, method Math_Stats::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.
sum
in file Stats.php, method Math_Stats::sum()
    Calculates SUM { xi } Handles cummulative data sets correctly
sum2
in file Stats.php, method Math_Stats::sum2()
    Calculates SUM { (xi)^2 } Handles cummulative data sets correctly
sumN
in file Stats.php, method Math_Stats::sumN()
    Calculates SUM { (xi)^n } Handles cummulative data sets correctly
top

v

variance
in file Stats.php, method Math_Stats::variance()
    Calculates the variance (unbiased) of the data points in the set Handles cummulative data sets correctly
varianceWithMean
in file Stats.php, method Math_Stats::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().
top

Documentation generated on Mon, 11 Mar 2019 15:39:17 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.