用法:
class pandas.tseries.offsets.BusinessMonthEnd
DateOffset 在该月的最后一个工作日之间递增。
例子:
>>> from pandas.tseries.offsets import BMonthEnd >>> ts = pd.Timestamp('2020-05-24 05:01:15') >>> ts + BMonthEnd() Timestamp('2020-05-29 05:01:15') >>> ts + BMonthEnd(2) Timestamp('2020-06-30 05:01:15') >>> ts + BMonthEnd(-2) Timestamp('2020-03-31 05:01:15')
相关用法
- Python pandas.tseries.offsets.BusinessMonthBegin用法及代码示例
- 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.BusinessMonthEnd。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。