We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This works
from pandas.tseries.frequencies import to_offset pd.Timestamp('1990-9-30') + 2*to_offset('Q')
This doesn't. Shouldn't it? Workaround is to convert with to_timestamp.
to_timestamp
pd.Period('1990q1') + 2*to_offset('Q')