The quarter of the date
(self)
| 479 | |
| 480 | @property |
| 481 | def quarter(self) -> T_DataArray: |
| 482 | """The quarter of the date""" |
| 483 | return self._date_field("quarter", np.int64) |
| 484 | |
| 485 | @property |
| 486 | def days_in_month(self) -> T_DataArray: |
nothing calls this directly
no test coverage detected