(self, value=None)
| 400 | return Replace(self, to_replace=to_replace, value=value, regex=regex) |
| 401 | |
| 402 | def fillna(self, value=None): |
| 403 | if isinstance(value, Expr) and not are_co_aligned(self, value): |
| 404 | return FillnaAlign(self, value=value) |
| 405 | return Fillna(self, value=value) |
| 406 | |
| 407 | def rename_axis( |
| 408 | self, mapper=no_default, index=no_default, columns=no_default, axis=0 |