(self)
| 2176 | assert_array_equal(digitize(x, bins, True), right_answer) |
| 2177 | |
| 2178 | def test_right_open(self): |
| 2179 | x = np.arange(-6, 5) |
| 2180 | bins = np.arange(-6, 4) |
| 2181 | assert_array_equal(digitize(x, bins, True), np.arange(11)) |
| 2182 | |
| 2183 | def test_right_open_reverse(self): |
| 2184 | x = np.arange(5, -6, -1) |
nothing calls this directly
no test coverage detected