(self, other, min_periods=None, split_every=False)
| 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): |
no test coverage detected