The calendar used by the datetimes in the index.
(self)
| 690 | |
| 691 | @property |
| 692 | def calendar(self): |
| 693 | """The calendar used by the datetimes in the index.""" |
| 694 | if not self._data.size: |
| 695 | return None |
| 696 | |
| 697 | return infer_calendar_name(self) |
| 698 | |
| 699 | @property |
| 700 | def freq(self): |
nothing calls this directly
no test coverage detected