用法:
class pandas.tseries.offsets.BusinessMonthBegin
DateOffset 一個月的第一個工作日。
例子:
>>> from pandas.tseries.offsets import BMonthBegin >>> ts=pd.Timestamp('2020-05-24 05:01:15') >>> ts + BMonthBegin() Timestamp('2020-06-01 05:01:15') >>> ts + BMonthBegin(2) Timestamp('2020-07-01 05:01:15') >>> ts + BMonthBegin(-3) Timestamp('2020-03-02 05:01:15')
相關用法
- Python pandas.tseries.offsets.BusinessMonthEnd用法及代碼示例
- Python pandas.tseries.offsets.BQuarterBegin用法及代碼示例
- Python pandas.tseries.offsets.BQuarterEnd用法及代碼示例
- 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.BusinessMonthBegin。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。