(self)
| 2017 | v.rank("x") |
| 2018 | |
| 2019 | def test_rank_use_bottleneck(self): |
| 2020 | v = Variable(["x"], [3.0, 1.0, np.nan, 2.0, 4.0]) |
| 2021 | with set_options(use_bottleneck=False): |
| 2022 | with pytest.raises(RuntimeError): |
| 2023 | v.rank("x") |
| 2024 | |
| 2025 | @requires_bottleneck |
| 2026 | def test_rank(self): |
nothing calls this directly
no test coverage detected