(self)
| 799 | |
| 800 | @pytest.mark.xfail(reason="Groupby reductions produce dense output") |
| 801 | def test_groupby_first(self): |
| 802 | x = self.sp_xr.copy() |
| 803 | x.coords["ab"] = ("x", ["a", "a", "b", "b"]) |
| 804 | x.groupby("ab").first() |
| 805 | x.groupby("ab").first(skipna=False) |
| 806 | |
| 807 | @pytest.mark.xfail(reason="Groupby reductions produce dense output") |
| 808 | def test_groupby_bins(self): |