(self, other, func, fill_value=None)
| 4444 | |
| 4445 | @derived_from(pd.Series) |
| 4446 | def combine(self, other, func, fill_value=None): |
| 4447 | other = self._create_alignable_frame(other, "outer") |
| 4448 | if not expr.are_co_aligned(self.expr, other.expr): |
| 4449 | return new_collection( |
| 4450 | expr.CombineSeriesAlign(self, other, func, fill_value) |
| 4451 | ) |
| 4452 | return new_collection(expr.CombineSeries(self, other, func, fill_value)) |
| 4453 | |
| 4454 | @derived_from(pd.Series) |
| 4455 | def explode(self): |
nothing calls this directly
no test coverage detected