The correlation coefficients formed from the array x, where the rows are the observations, and the columns are variables.
corrcoef(x,y) where x and y are 1d arrays is the same as corrcoef(transpose([x,y]))
Parameters: | x : ndarray
y : {None, ndarray} optional
rowvar : {False, True} optional
bias : {False, True} optional
allow_masked : {True, False} optional
|
---|
See also