(self, cond, other=np.nan)
| 383 | return Round(self, decimals=decimals) |
| 384 | |
| 385 | def where(self, cond, other=np.nan): |
| 386 | if not are_co_aligned(self, *[c for c in [cond, other] if isinstance(c, Expr)]): |
| 387 | return WhereAlign(self, cond=cond, other=other) |
| 388 | return Where(self, cond=cond, other=other) |
| 389 | |
| 390 | def mask(self, cond, other=np.nan): |
| 391 | if not are_co_aligned(self, *[c for c in [cond, other] if isinstance(c, Expr)]): |