(self)
| 311 | assert isinstance(result.data, self.Array) |
| 312 | |
| 313 | def test_weighted(self): |
| 314 | result = self.x.weighted(self.x.fillna(0)).mean() |
| 315 | assert isinstance(result.data, self.Array) |
| 316 | |
| 317 | def test_coarsen_construct(self): |
| 318 | result = self.x.coarsen(x=2, boundary="pad").construct(x=["a", "b"]) |