(self)
| 1245 | cov(x, rowvar=False, bias=True)) |
| 1246 | |
| 1247 | def test_2d_without_missing(self): |
| 1248 | # Test cov on 1 2D variable w/o missing values |
| 1249 | x = self.data.reshape(3, 4) |
| 1250 | assert_almost_equal(np.cov(x), cov(x)) |
| 1251 | assert_almost_equal(np.cov(x, rowvar=False), cov(x, rowvar=False)) |
| 1252 | assert_almost_equal(np.cov(x, rowvar=False, bias=True), |
| 1253 | cov(x, rowvar=False, bias=True)) |
| 1254 | |
| 1255 | def test_1d_with_missing(self): |
| 1256 | # Test cov 1 1D variable w/missing values |
nothing calls this directly
no test coverage detected