numpy.corrcoef
-
numpy.corrcoef(x, y=None, rowvar=1, bias=[source], ddof= ) -
Return Pearson product-moment correlation coefficients.
Please refer to the documentation for
covfor more detail. The relationship between the correlation coefficient matrix,R, and the covariance matrix,C, is
The values of
Rare between -1 and 1, inclusive.Parameters: x : array_like
A 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, optional
An additional set of variables and observations.
yhas the same shape asx.rowvar : int, optional
If
rowvaris 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 affect, do not use.
Deprecated since version 1.10.0.
ddof : _NoValue, optional
Has no affect, 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
This function accepts but discards arguments
biasandddof. 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.
© 2008–2016 NumPy Developers
Licensed under the NumPy License.
https://docs.scipy.org/doc/numpy-1.10.1/reference/generated/numpy.corrcoef.html