```python >>> arr = ndtest("year=2020..2022") >>> arr.reindex("year", [2020, 2022]) year 2020 2022 0.0 2.0 >>> arr.reindex("year", [2020, "a", 2022, "b"]) ValueError: incompatible axes: Axis([], 'year') vs Axis([], 'year') ``` Bonus point for the totally cryptic error message 😉