(self, other, func, fill_value=None)
| 4425 | |
| 4426 | @derived_from(pd.Series) |
| 4427 | def combine(self, other, func, fill_value=None): |
| 4428 | other = self._create_alignable_frame(other, "outer") |
| 4429 | if not expr.are_co_aligned(self.expr, other.expr): |
| 4430 | return new_collection( |
| 4431 | expr.CombineSeriesAlign(self, other, func, fill_value) |
| 4432 | ) |
| 4433 | return new_collection(expr.CombineSeries(self, other, func, fill_value)) |
| 4434 | |
| 4435 | @derived_from(pd.Series) |
| 4436 | def explode(self): |
nothing calls this directly
no test coverage detected