(self)
| 1338 | ) |
| 1339 | |
| 1340 | def test_1d_without_missing(self): |
| 1341 | # Test cov on 1D variable w/o missing values |
| 1342 | x = self._create_data() |
| 1343 | assert_almost_equal(np.cov(x), cov(x)) |
| 1344 | assert_almost_equal(np.cov(x, rowvar=False), cov(x, rowvar=False)) |
| 1345 | assert_almost_equal(np.cov(x, rowvar=False, bias=True), |
| 1346 | cov(x, rowvar=False, bias=True)) |
| 1347 | |
| 1348 | def test_2d_without_missing(self): |
| 1349 | # Test cov on 1 2D variable w/o missing values |
nothing calls this directly
no test coverage detected