bundles / numpy 2.4.4 / numpy / corrcoef
_ArrayFunctionDispatcher
numpy:corrcoef
Signature
def corrcoef ( x , y = None , rowvar = True , * , dtype = None ) Summary
Return Pearson product-moment correlation coefficients.
Extended Summary
Please refer to the documentation for cov for more detail. The relationship between the correlation coefficient matrix, R, and the covariance matrix, C, is
The values of R are between -1 and 1, inclusive.
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.dtype: data-type, optionalData-type of the result. By default, the return data-type will have at least numpy.float64 precision.
Returns
R: ndarrayThe correlation coefficient matrix of the variables.
Notes
Due to floating point rounding the resulting array may not be Hermitian, the diagonal elements may not be 1, and the elements may not satisfy the inequality abs(a) <= 1. The real and imaginary parts are clipped to the interval [-1, 1] in an attempt to improve on that situation but is not much help in the complex case.
Examples
import numpy as np
✓import numpy as np rng = np.random.default_rng(seed=42) xarr = rng.random((3, 3)) xarr R1 = np.corrcoef(xarr) R1✓
yarr = rng.random((3, 3)) yarr R2 = np.corrcoef(xarr, yarr) R2✓
R3 = np.corrcoef(xarr, yarr, rowvar=False) R3✓
See also
- cov
Covariance matrix
Aliases
-
numpy.corrcoef