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

Class _Align

dask/dataframe/dask_expr/_expr.py:1189–1198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1187
1188
1189class _Align(Blockwise):
1190 _parameters = ["frame", "other", "join", "axis", "fill_value"]
1191 _defaults = {"join": "outer", "fill_value": None, "axis": None}
1192 _keyword_only = ["join", "fill_value", "axis"]
1193 operation = M.align
1194 _preserves_partitioning_information = True
1195
1196 def _divisions(self):
1197 # Aligning, so take first frames divisions
1198 return self.frame._divisions()
1199
1200
1201class AlignGetitem(Blockwise):

Callers 1

alignMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected