(self)
| 1407 | return data, data2 |
| 1408 | |
| 1409 | def test_1d_without_missing(self): |
| 1410 | # Test cov on 1D variable w/o missing values |
| 1411 | x = self._create_data()[0] |
| 1412 | assert_almost_equal(np.corrcoef(x), corrcoef(x)) |
| 1413 | assert_almost_equal(np.corrcoef(x, rowvar=False), |
| 1414 | corrcoef(x, rowvar=False)) |
| 1415 | |
| 1416 | def test_2d_without_missing(self): |
| 1417 | # Test corrcoef on 1 2D variable w/o missing values |
nothing calls this directly
no test coverage detected