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 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
 NotesDue 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 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.11.0/reference/generated/numpy.corrcoef.html