An umbrella package containing all packages related to Probability and Statistics.
|
|
statslist(data,
weights=None,
masks=None)
Return the (weighted) total weight, mean, and covariance of the data |
source code
|
|
|
|
|
|
|
moment2e(data,
weights=None)
Return the per-element 2nd order (weighted) moment of the data |
source code
|
|
|
|
stde(n,
s2e,
mean)
Get the per-element standard deviation tensor based on 0th and per-element 2nd order moments and mean |
source code
|
|
|
|
|
|
|
moment11(data1,
data2,
weights=None)
Return the (1,1)-th order (weighted) cross moment the two data (point1 * point2^T) |
source code
|
|
|
|
statsliste(data,
weights=None,
masks=None)
Return the per-element (weighted) total weight, means, and standard deviations of the data |
source code
|
|
|
|
moment2(data,
weights=None)
Return the 2nd order (weighted) moment of the data |
source code
|
|
|
|
moment1(data,
weights=None)
Return the 1st order (weighted) moment of the data |
source code
|
|
|
|
moment0(data,
weights=None)
Return the 0th order (weighted) moment of the data |
source code
|
|
|
|
covariance(n,
s2,
mean)
Get the covariance tensor based on 0th and 2nd order moments and mean |
source code
|
|
|
|
|
|
|
correlation(n,
s11,
mean1,
mean2)
Compute the correlation of 2 datasets based on their 0th and (1,1)-th order cross moment and their mean tensors. |
source code
|
|
|
|
mean(n,
s1)
Get the mean tensor based on 0th and 1st order moments |
source code
|
|