MCPcopy Create free account
hub / github.com/dask/dask / combine

Method combine

dask/dataframe/dask_expr/_collection.py:4427–4433  ·  view source on GitHub ↗
(self, other, func, fill_value=None)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 2

new_collectionFunction · 0.90

Tested by

no test coverage detected