bundles / numpy 2.4.3 / numpy / ma / extras / corrcoef
function
numpy.ma.extras:corrcoef
source: /numpy/ma/extras.py :1675
Signature
def corrcoef ( x , y = None , rowvar = True , allow_masked = True ) Summary
Return Pearson product-moment correlation coefficients.
Extended Summary
Except for the handling of missing data this function does the same as numpy.corrcoef. For more details and examples, see numpy.corrcoef.
Parameters
x: array_likeA 1-D or 2-D array containing multiple variables and observations. Each row of
xrepresents a variable, and each column a single observation of all those variables. Also seerowvarbelow.y: array_like, optionalAn additional set of variables and observations.
yhas the same shape asx.rowvar: bool, optionalIf
rowvaris True (default), then each row represents a variable, with observations in the columns. Otherwise, the relationship is transposed: each column represents a variable, while the rows contain observations.allow_masked: bool, optionalIf True, masked values are propagated pair-wise: if a value is masked in
x, the corresponding value is masked iny. If False, raises an exception. Becausebiasis deprecated, this argument needs to be treated as keyword only to avoid a warning.
Examples
import numpy as np x = np.ma.array([[0, 1], [1, 1]], mask=[0, 1, 0, 1]) np.ma.corrcoef(x)✓
See also
- cov
Estimate the covariance matrix.
- numpy.corrcoef
Equivalent function in top-level NumPy module.
Aliases
-
numpy.ma.corrcoef