(self)
| 1414 | corrcoef(x, rowvar=False)) |
| 1415 | |
| 1416 | def test_2d_without_missing(self): |
| 1417 | # Test corrcoef on 1 2D variable w/o missing values |
| 1418 | x = self._create_data()[0].reshape(3, 4) |
| 1419 | assert_almost_equal(np.corrcoef(x), corrcoef(x)) |
| 1420 | assert_almost_equal(np.corrcoef(x, rowvar=False), |
| 1421 | corrcoef(x, rowvar=False)) |
| 1422 | |
| 1423 | def test_1d_with_missing(self): |
| 1424 | # Test corrcoef 1 1D variable w/missing values |
nothing calls this directly
no test coverage detected