(self)
| 2629 | assert_allclose(cov(self.x3, y), cov(self.x3, y, rowvar=False)) |
| 2630 | |
| 2631 | def test_1D_variance(self): |
| 2632 | assert_allclose(cov(self.x3, ddof=1), np.var(self.x3, ddof=1)) |
| 2633 | |
| 2634 | def test_fweights(self): |
| 2635 | assert_allclose(cov(self.x2, fweights=self.frequencies), |
nothing calls this directly
no test coverage detected