(self)
| 1919 | assert_array_equal(digitize(x, bins, True), right_answer) |
| 1920 | |
| 1921 | def test_right_open(self): |
| 1922 | x = np.arange(-6, 5) |
| 1923 | bins = np.arange(-6, 4) |
| 1924 | assert_array_equal(digitize(x, bins, True), np.arange(11)) |
| 1925 | |
| 1926 | def test_right_open_reverse(self): |
| 1927 | x = np.arange(5, -6, -1) |
nothing calls this directly
no test coverage detected