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

Method align

dask/dataframe/dask_expr/_collection.py:2084–2086  ·  view source on GitHub ↗
(self, other, join="outer", axis=None, fill_value=None)

Source from the content-addressed store, hash-verified

2082
2083 @derived_from(pd.DataFrame)
2084 def align(self, other, join="outer", axis=None, fill_value=None):
2085 other = self._create_alignable_frame(other, join)
2086 return self.expr.align(other.expr, join, axis, fill_value)
2087
2088 def nunique_approx(self, split_every=None):
2089 """Approximate number of unique rows.

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected