(self, to_replace=None, value=no_default, regex=False)
| 396 | return Apply(self, function, args, meta, kwargs) |
| 397 | |
| 398 | def replace(self, to_replace=None, value=no_default, regex=False): |
| 399 | return Replace(self, to_replace=to_replace, value=value, regex=regex) |
| 400 | |
| 401 | def fillna(self, value=None): |
| 402 | if isinstance(value, Expr) and not are_co_aligned(self, value): |