此方法用於返回固定頻率的DatetimeIndex,以工作日為默認頻率。
用法:pandas.bdate_range(start=None, end=None, periods=None, freq=’B’, tz=None, normalize=True, name=None, weekmask=None, holidays=None, closed=None, **kwargs,)
參數:
- start:字符串或datetime-like,默認為None,左邊界為生成日期。
- end:字符串或datetime-like,默認為None,用於生成日期的右邊界。
- periods:整數,默認值無,要生成的周期數。
- freq: string或DateOffset,默認為“ B”(每日營業),頻率字符串可以有多個,例如“ 5H”。
- tz:字符串或無,返回本地化的DatetimeIndex的時區名稱,例如Asia /Beijing。
下麵是上述方法的實現和一些示例:
範例1:
Python3
# importing packages
import pandas
# using pandas.bdate_range() method
print(pandas.bdate_range(start='8/1/2020',
end='8/20/2020'))
輸出:
範例2:
Python3
# importing packages
import pandas
# using pandas.bdate_range() method
print(pandas.bdate_range(start='8/1/2020',
end='8/5/2020',
freq='5H'))
輸出:
相關用法
- Python pandas.isna()用法及代碼示例
- Python pandas.array()用法及代碼示例
- Python pandas.eval()用法及代碼示例
- Python pandas.crosstab()用法及代碼示例
- Python pandas.lreshape()用法及代碼示例
- Python pandas.merge_asof()用法及代碼示例
- Python Pandas.set_option()用法及代碼示例
- Python Pandas.get_option()用法及代碼示例
- Python Pandas.reset_option()用法及代碼示例
- Python Pandas.describe_option()用法及代碼示例
- Python Pandas.cut()用法及代碼示例
注:本文由純淨天空篩選整理自deepanshu_rustagi大神的英文原創作品 pandas.bdate_range() function in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。