(self, other)
| 1912 | |
| 1913 | @derived_from(pd.DataFrame) |
| 1914 | def combine_first(self, other): |
| 1915 | other = self._create_alignable_frame(other, "outer").expr |
| 1916 | return new_collection(self.expr.combine_first(other)) |
| 1917 | |
| 1918 | @derived_from(pd.DataFrame) |
| 1919 | def to_timestamp(self, freq=None, how="start"): |
nothing calls this directly
no test coverage detected