-
numpy.corrcoef(x, y=None, rowvar=1, bias=, ddof=)
[source] -
Return Pearson product-moment correlation coefficients.
Please refer to the documentation for
cov
for more detail. The relationship between the correlation coefficient matrix,R
, and the covariance matrix,C
, isThe values of
R
are between -1 and 1, inclusive.Parameters: x : array_like
A 1-D or 2-D array containing multiple variables and observations. Each row of
x
represents a variable, and each column a single observation of all those variables. Also seerowvar
below.y : array_like, optional
An additional set of variables and observations.
y
has the same shape asx
.rowvar : int, optional
If
rowvar
is non-zero (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.bias : _NoValue, optional
Has no effect, do not use.
Deprecated since version 1.10.0.
ddof : _NoValue, optional
Has no effect, do not use.
Deprecated since version 1.10.0.
Returns: R : ndarray
The correlation coefficient matrix of the variables.
See also
-
cov
- Covariance matrix
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.
This function accepts but discards arguments
bias
andddof
. This is for backwards compatibility with previous versions of this function. These arguments had no effect on the return values of the function and can be safely ignored in this and previous versions of numpy. -
numpy.corrcoef()
2017-01-10 18:13:31
Please login to continue.