|
Awkl
|
Functions | |
| auto | sum (A) |
| Sum function. | |
| auto | sumReciprocals (A) |
| Sum of reciprocals function. | |
| auto | sumSquares (A) |
| Sum of squares function (or dot product with itself) | |
| auto | sumOfSquares (A, m) |
| Sum of squared deviations from the mean function (SS / SDM) | |
| auto | dot (A, B) |
| Dot product. | |
| auto | prod (A) |
| Product function. | |
| auto | cumsum (A) |
| Cumulative sum function. | |
| auto | cumprod (A) |
| Cumulative product function. | |
| auto | mean (A, l) |
| Arithmetic mean function (AM / M_1) | |
| auto | harMean (A, l) |
| Harmonic mean function (HM / M_-1) | |
| auto | geoMean (A, l) |
| Geometric mean function (GM / M_0) | |
| auto | quadraticMean (A, l) |
| Quadratic mean function (or root mean square) (QM/RMS / M_2) | |
| auto | generalizedMean (A, n) |
| Generalized mean function (M_n) | |
| auto | mid (A, l) |
| Middle element of an array. If there are 2, get the arithmetic mean of both. | |
| auto | midLow (A, l) |
| Middle element of an array. If there are 2, get the lower indexed one. | |
| auto | midHigh (A, l) |
| Middle element of an array. If there are 2, get the higher indexed one. | |
| auto | median (A) |
| Median function. | |
| auto | medianLow (A) |
| Median low function. | |
| auto | medianHigh (A) |
| Median high function. | |
| auto | min (A) |
| Minimum of an array. | |
| auto | max (A) |
| Maximum of an array. | |
| auto | extrema (A, ex) |
| Minimum and maximum of an array. | |
| auto | range (A) |
| Range function (maximum - minimum) | |
| auto | midrange (A) |
| Mid range function. | |
| unassigned | mode (array A, array modes) |
| Mode function. | |
| unassigned | antimode (array A, array amodes) |
| Antimode function. | |
| auto | pvar (A, m, l) |
| Population variance function. | |
| auto | var (A, m, l) |
| Sample variance function. | |
| auto | psd (A, m, l) |
| Population standard deviation function. | |
| auto | sd (A, m, l) |
| Sample standard deviation function. | |
| auto | cv (A, m, s) |
| Coefficient of variation. | |
| auto | pcov (A, B, m1, m2) |
| Population covariance function. | |
| auto | cov (A, B, m1, m2) |
| Sample covariance function. | |
| auto | pcor (A, B) |
| Population Pearson correlation function (PCC / rho) | |
| auto | cor (A, B) |
| Sample Pearson correlation function. | |
| auto | pskewness (A, l) |
| Population skewness function. | |
| auto | skewness (A, m, s, l) |
| Sample skewness function. | |
| auto | pkurtosis (A, l) |
| Population kurtosis function. | |
| auto | kurtosis (A, m, s, l) |
| Sample kurtosis function. | |
| auto | _stat_push (s, x) |
| auto | stat_push (s, x) |
| Update moment statistics to array "s" /**. | |
| auto | stat_calc (s, stats) |
| Update central moments statistics to array "s" mean: Arithmetic mean (1° moment) pvar: Population variance (2° central moment) var: Sample variance psd: Population standard deviation sd: Sample standard deviation pskewness: Population skewness (3° standardized moment) skewness: Sample skewness pkurtosis: Population kurtosis (4° standardized moment) kurtosis: Sample kurtosis More efficient than computing each one separately? | |
| auto stats::_stat_push | ( | s | , |
| x | ) |
| unassigned stats::antimode | ( | array | A, |
| array | amodes ) |
Antimode function.
| [in] | A | Data array |
| [out] | amodes | Array to be filled with the antimodes |
| auto stats::cor | ( | A | , |
| B | ) |
Sample Pearson correlation function.
| auto stats::cov | ( | A | , |
| B | , | ||
| m1 | , | ||
| m2 | ) |
Sample covariance function.
| auto stats::cumprod | ( | A | ) |
Cumulative product function.
| auto stats::cumsum | ( | A | ) |
Cumulative sum function.
| auto stats::cv | ( | A | , |
| m | , | ||
| s | ) |
Coefficient of variation.
| auto stats::dot | ( | A | , |
| B | ) |
Dot product.
| auto stats::extrema | ( | A | , |
| ex | ) |
Minimum and maximum of an array.
| auto stats::generalizedMean | ( | A | , |
| n | ) |
Generalized mean function (M_n)
| auto stats::geoMean | ( | A | , |
| l | ) |
Geometric mean function (GM / M_0)
| auto stats::harMean | ( | A | , |
| l | ) |
Harmonic mean function (HM / M_-1)
| auto stats::kurtosis | ( | A | , |
| m | , | ||
| s | , | ||
| l | ) |
Sample kurtosis function.
| auto stats::max | ( | A | ) |
Maximum of an array.
| auto stats::mean | ( | A | , |
| l | ) |
Arithmetic mean function (AM / M_1)
| auto stats::median | ( | A | ) |
Median function.
| auto stats::medianHigh | ( | A | ) |
Median high function.
| auto stats::medianLow | ( | A | ) |
Median low function.
| auto stats::mid | ( | A | , |
| l | ) |
Middle element of an array. If there are 2, get the arithmetic mean of both.
| auto stats::midHigh | ( | A | , |
| l | ) |
Middle element of an array. If there are 2, get the higher indexed one.
| auto stats::midLow | ( | A | , |
| l | ) |
Middle element of an array. If there are 2, get the lower indexed one.
| auto stats::midrange | ( | A | ) |
Mid range function.
| auto stats::min | ( | A | ) |
Minimum of an array.
| unassigned stats::mode | ( | array | A, |
| array | modes ) |
Mode function.
| [in] | A | Data array |
| [out] | modes | Array to be filled with the modes |
| auto stats::pcor | ( | A | , |
| B | ) |
Population Pearson correlation function (PCC / rho)
| auto stats::pcov | ( | A | , |
| B | , | ||
| m1 | , | ||
| m2 | ) |
Population covariance function.
| auto stats::pkurtosis | ( | A | , |
| l | ) |
Population kurtosis function.
| auto stats::prod | ( | A | ) |
Product function.
| auto stats::psd | ( | A | , |
| m | , | ||
| l | ) |
Population standard deviation function.
| auto stats::pskewness | ( | A | , |
| l | ) |
Population skewness function.
| auto stats::pvar | ( | A | , |
| m | , | ||
| l | ) |
Population variance function.
| auto stats::quadraticMean | ( | A | , |
| l | ) |
Quadratic mean function (or root mean square) (QM/RMS / M_2)
| auto stats::range | ( | A | ) |
Range function (maximum - minimum)
| auto stats::sd | ( | A | , |
| m | , | ||
| l | ) |
Sample standard deviation function.
| auto stats::skewness | ( | A | , |
| m | , | ||
| s | , | ||
| l | ) |
Sample skewness function.
| auto stats::stat_calc | ( | s | , |
| stats | ) |
Update central moments statistics to array "s" mean: Arithmetic mean (1° moment) pvar: Population variance (2° central moment) var: Sample variance psd: Population standard deviation sd: Sample standard deviation pskewness: Population skewness (3° standardized moment) skewness: Sample skewness pkurtosis: Population kurtosis (4° standardized moment) kurtosis: Sample kurtosis More efficient than computing each one separately?
| auto stats::stat_push | ( | s | , |
| x | ) |
Update moment statistics to array "s" /**.
Compute running statistics for the first 4 degrees of moments of a series n: Length min: Minimum max: Maximum sum: Sum mom1: 1° moment mom2: 2° moment mom3: 3° moment mom4: 4° moment
| auto stats::sum | ( | A | ) |
Sum function.
| auto stats::sumOfSquares | ( | A | , |
| m | ) |
Sum of squared deviations from the mean function (SS / SDM)
| auto stats::sumReciprocals | ( | A | ) |
Sum of reciprocals function.
| auto stats::sumSquares | ( | A | ) |
Sum of squares function (or dot product with itself)
| auto stats::var | ( | A | , |
| m | , | ||
| l | ) |
Sample variance function.