(self)
| 481 | |
| 482 | @pytest.mark.xfail(reason="rank uses bottleneck") |
| 483 | def test_rank(self): |
| 484 | # TODO: scipy has rankdata, as does jax, so this can work |
| 485 | result = self.x.rank() |
| 486 | assert isinstance(result.data, self.Array) |
| 487 | |
| 488 | def test_transpose(self): |
| 489 | result = self.x.transpose() |