| Parameters: | - x:array_like
A 1-D or 2-D array containing multiple variables and observations.Each row ofx represents a variable, and each column a singleobservation of all those variables. Also seerowvar below. - y:array_like, optional
An additional set of variables and observations.y has the sameform asx. - rowvar:bool, optional
Ifrowvar is True (default), then each row represents avariable, with observations in the columns. Otherwise, the relationshipis transposed: each column represents a variable, while the rowscontain observations. - bias:bool, optional
Default normalization (False) is by(N-1), whereN is thenumber of observations given (unbiased estimate). Ifbias is True,then normalization is byN. This keyword can be overridden bythe keywordddof in numpy versions >= 1.5. - allow_masked:bool, optional
If True, masked values are propagated pair-wise: if a value is maskedinx, the corresponding value is masked iny.If False, raises aValueError exception when some values are missing. - ddof:{None, int}, optional
If notNone normalization is by(N-ddof), whereN isthe number of observations; this overrides the value implied bybias. The default value isNone.
|
|---|