(self, lower=None, upper=None, axis=None)
| 361 | return AsType(self, dtypes) |
| 362 | |
| 363 | def clip(self, lower=None, upper=None, axis=None): |
| 364 | return Clip(self, lower=lower, upper=upper, axis=axis) |
| 365 | |
| 366 | def combine_first(self, other): |
| 367 | if are_co_aligned(self, other): |