(self)
| 3960 | assert_equal(a.prod(axis=0), [4, 10, 18]) |
| 3961 | |
| 3962 | def test_meananom_object(self): |
| 3963 | # Test mean/anom on object dtype |
| 3964 | a = masked_array([1, 2, 3], dtype=object) |
| 3965 | assert_equal(a.mean(), 2) |
| 3966 | assert_equal(a.anom(), [-1, 0, 1]) |
| 3967 | |
| 3968 | def test_anom_shape(self): |
| 3969 | a = masked_array([1, 2, 3]) |
nothing calls this directly
no test coverage detected