numpy 1.22.4 Pypi GitHub Homepage
Other Docs
NotesParameters
corrcoef(x, y=None, rowvar=True, bias=<no value>, allow_masked=True, ddof=<no value>)

Except for the handling of missing data this function does the same as numpy.corrcoef . For more details and examples, see numpy.corrcoef .

Notes

This function accepts but discards arguments :None:None:`bias` and :None:None:`ddof`. 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.

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 see :None:None:`rowvar` below.

y : array_like, optional

An additional set of variables and observations. y has the same shape as x.

rowvar : bool, optional

If :None:None:`rowvar` is 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.

bias : _NoValue, optional

Has no effect, do not use.

deprecated
allow_masked : bool, optional

If True, masked values are propagated pair-wise: if a value is masked in x, the corresponding value is masked in y. If False, raises an exception. Because :None:None:`bias` is deprecated, this argument needs to be treated as keyword only to avoid a warning.

ddof : _NoValue, optional

Has no effect, do not use.

deprecated

Return Pearson product-moment correlation coefficients.

See Also

cov

Estimate the covariance matrix.

numpy.corrcoef

Equivalent function in top-level NumPy module.

Examples

See :

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /numpy/ma/extras.py#1375
type: <class 'function'>
Commit: