MCPcopy
hub / github.com/pandas-dev/pandas / _is_quarterly

Function _is_quarterly

pandas/tseries/frequencies.py:601–603  ·  view source on GitHub ↗
(rule: str)

Source from the content-addressed store, hash-verified

599
600
601def _is_quarterly(rule: str) -> bool:
602 rule = rule.upper()
603 return rule == "Q" or rule.startswith(("Q-", "BQ"))
604
605
606def _is_monthly(rule: str) -> bool:

Callers 2

is_subperiodFunction · 0.85
is_superperiodFunction · 0.85

Calls 2

upperMethod · 0.80
startswithMethod · 0.80

Tested by

no test coverage detected