(self)
| 2365 | assert_allclose(cov(self.x3, y), cov(self.x3, y, rowvar=False)) |
| 2366 | |
| 2367 | def test_1D_variance(self): |
| 2368 | assert_allclose(cov(self.x3, ddof=1), np.var(self.x3, ddof=1)) |
| 2369 | |
| 2370 | def test_fweights(self): |
| 2371 | assert_allclose(cov(self.x2, fweights=self.frequencies), |
nothing calls this directly
no test coverage detected