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

Method combine

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

new_collectionFunction · 0.90

Tested by

no test coverage detected