(self, other, join="outer", axis=None, fill_value=None)
| 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. |
nothing calls this directly
no test coverage detected