用法:
class pandas.tseries.offsets.BQuarterBegin
DateOffset 在每個季度的第一個工作日之間遞增。
startingMonth = 1 對應於 1/01/2007、4/01/2007 等日期,... startingMonth = 2 對應於 2/01/2007、5/01/2007 等日期,... startingMonth = 3 對應於 3/01 等日期/2007, 6/01/2007, …
例子:
>>> from pandas.tseries.offsets import BQuarterBegin >>> ts = pd.Timestamp('2020-05-24 05:01:15') >>> ts + BQuarterBegin() Timestamp('2020-06-01 05:01:15') >>> ts + BQuarterBegin(2) Timestamp('2020-09-01 05:01:15') >>> ts + BQuarterBegin(startingMonth=2) Timestamp('2020-08-03 05:01:15') >>> ts + BQuarterBegin(-1) Timestamp('2020-03-02 05:01:15')
相關用法
- Python pandas.tseries.offsets.BQuarterEnd用法及代碼示例
- Python pandas.tseries.offsets.BusinessMonthEnd用法及代碼示例
- Python pandas.tseries.offsets.BusinessMonthBegin用法及代碼示例
- Python pandas.tseries.offsets.BYearBegin用法及代碼示例
- Python pandas.tseries.offsets.BYearEnd用法及代碼示例
- Python pandas.tseries.offsets.DateOffset用法及代碼示例
- Python pandas.testing.assert_frame_equal用法及代碼示例
- Python pandas.to_numeric用法及代碼示例
- Python pandas.to_datetime用法及代碼示例
- Python pandas.testing.assert_index_equal用法及代碼示例
- Python pandas.timedelta_range用法及代碼示例
- Python pandas.testing.assert_series_equal用法及代碼示例
- Python pandas.to_markdown()用法及代碼示例
- Python pandas.to_timedelta用法及代碼示例
- Python pandas.testing.assert_extension_array_equal用法及代碼示例
- Python pandas.arrays.IntervalArray.is_empty用法及代碼示例
- Python pandas.DataFrame.ewm用法及代碼示例
- Python pandas.api.types.is_timedelta64_ns_dtype用法及代碼示例
- Python pandas.DataFrame.dot用法及代碼示例
- Python pandas.DataFrame.apply用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.tseries.offsets.BQuarterBegin。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。