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