(self, other)
| 364 | return Clip(self, lower=lower, upper=upper, axis=axis) |
| 365 | |
| 366 | def combine_first(self, other): |
| 367 | if are_co_aligned(self, other): |
| 368 | return CombineFirst(self, other=other) |
| 369 | else: |
| 370 | return CombineFirstAlign(self, other) |
| 371 | |
| 372 | def to_timestamp(self, freq=None, how="start"): |
| 373 | return ToTimestamp(self, freq=freq, how=how) |