MCPcopy Create free account
hub / github.com/dask/dask / cov

Method cov

dask/dataframe/dask_expr/_collection.py:4558–4562  ·  view source on GitHub ↗
(self, other, min_periods=None, split_every=False)

Source from the content-addressed store, hash-verified

4556
4557 @derived_from(pd.Series)
4558 def cov(self, other, min_periods=None, split_every=False):
4559 if not isinstance(other, Series):
4560 raise TypeError("other must be a dask.dataframe.Series")
4561 df = concat([self, other], axis=1)
4562 return df._cov(min_periods, True, split_every, scalar=True)
4563
4564 @derived_from(pd.Series)
4565 def corr(self, other, method="pearson", min_periods=None, split_every=False):

Callers 1

_prepare_cov_corrMethod · 0.45

Calls 2

_covMethod · 0.80
concatFunction · 0.70

Tested by

no test coverage detected