The day of the week with Monday=0, Sunday=6
(self)
| 467 | |
| 468 | @property |
| 469 | def dayofweek(self) -> T_DataArray: |
| 470 | """The day of the week with Monday=0, Sunday=6""" |
| 471 | return self._date_field("dayofweek", np.int64) |
| 472 | |
| 473 | weekday = dayofweek |
| 474 |
nothing calls this directly
no test coverage detected