(self)
| 1402 | class TestCorrcoef: |
| 1403 | |
| 1404 | def _create_data(self): |
| 1405 | data = array(np.random.rand(12)) |
| 1406 | data2 = array(np.random.rand(12)) |
| 1407 | return data, data2 |
| 1408 | |
| 1409 | def test_1d_without_missing(self): |
| 1410 | # Test cov on 1D variable w/o missing values |
no test coverage detected