f
corrcoef(): matrix
x: numarraymatrix,
y?: numarraymatrix | number,
flag?: number
2 overloads
Correlation coefficients of arrays.
f
f
f
iqr(): numarraymatrix
x: numarraymatrix,
dim?: 0 | 1
2 overloads
Interquartile range.
f
kurtosis(): numarraymatrix
x: numarraymatrix,
flag?: 0 | 1,
dim?: 0 | 1
2 overloads
Computes the kurtosis of a dataset.
f
mad(): numarraymatrix
x: numarraymatrix,
dim?: 0 | 1
2 overloads
Mean absolute deviation.
f
max(): numarraymatrix
x: numarraymatrix,
dim?: 0 | 1
2 overloads
Largest element in array.
f
mean(): numarraymatrix
x: numarraymatrix,
dim?: 0 | 1
4 overloads
Average value of array or matrix.
f
median(): numarraymatrix
x: numarraymatrix,
dim?: 0 | 1
3 overloads
Median value of array.
f
min(): numarraymatrix
x: numarraymatrix,
dim?: 0 | 1
2 overloads
Smallest element in array.
f
mode(): numarraymatrix
x: numarraymatrix,
dim?: 0 | 1
2 overloads
Most frequent value in an array.
f
moment(): numarraymatrix
x: numarraymatrix,
k: number,
dim?: 0 | 1
2 overloads
Computes the central moment of a dataset.
f
pdist(): number
x: array,
y: array,
mode?: "euclidean" | "manhattan" | "chebychev" | "hamming"
Pairwise distance between two sets of observations.
f
prctile(): number | array
x: array | matrix,
p: number,
dim?: 0 | 1
6 overloads
Percentiles of a sample.
f
quantile(): number | array
x: array | matrix,
p: number,
dim?: 0 | 1
4 overloads
Quantiles of a sample.
f
quartile(): numarraymatrix
x: numarraymatrix,
dim?: 0 | 1
2 overloads
Quartiles of a sample.
f
range(): numarraymatrix
x: numarraymatrix,
dim?: 0 | 1
3 overloads
Range of values.
f
skewness(): numarraymatrix
x: numarraymatrix,
flag?: 0 | 1,
dim?: 0 | 1
2 overloads
Computes the skewness of a dataset.
f
std(): number | matrix
x: array | matrix,
flag?: 0 | 1,
dim?: 0 | 1
6 overloads
Computes the standard deviation.
f
varc(): number | matrix
x: array | matrix,
flag?: 0 | 1,
dim?: 0 | 1
9 overloads
Computes the variance.
f
zscore(): numarraymatrix
x: numarraymatrix,
flag?: 0 | 1,
dim?: 0 | 1
2 overloads
Standardized Z score.
Usage
import * as stats__Statistical_analysis_and_descriptive_statistics_functions___This_module_provides_utilities_for____Central_tendency__mean__median__mode____Dispersion__std__varc__range__iqr__mad____Distribution_shape__skewness__kurtosis__xkurtosis____Relationships__corrcoef__cov____Quantiles__quantile__quartile__prctile____Extremes__min__max____Standardization__zscore____Distance__pdist____Histogram__histc____Moments__moment_ from "stats/index.ts";