(self, other)
| 1918 | |
| 1919 | @derived_from(pd.DataFrame) |
| 1920 | def combine_first(self, other): |
| 1921 | other = self._create_alignable_frame(other, "outer").expr |
| 1922 | return new_collection(self.expr.combine_first(other)) |
| 1923 | |
| 1924 | @derived_from(pd.DataFrame) |
| 1925 | def to_timestamp(self, freq=None, how="start"): |
nothing calls this directly
no test coverage detected