Python | Панды tseries.offsets.CustomBusinessHour.offset
Смещения даты - это стандартный вид приращения даты, используемый для диапазона дат в Pandas. Он работает точно так же, как relativedelta с точки зрения аргументов ключевого слова, которые мы передаем. DateOffets работает следующим образом, каждое смещение определяет набор дат, соответствующих DateOffset. Например, Bday определяет этот набор как набор дат, являющихся рабочими днями (MF).
DateOffsets могут быть созданы для перемещения дат вперед на заданное количество допустимых дат. Например, Bday (2) можно добавить к дате, чтобы переместить ее на два рабочих дня вперед. Если дата не начинается с действительной даты, сначала она перемещается на действительную дату, а затем создается смещение.
Pandas tseries.offsets.CustomBusinessHour.offset attribute returns a datetime.timedelta value. It is an alias for self._offset.
Syntax: pandas.tseries.offsets.CustomBusinessHour.offset
Parameter : None
Returns : datetime.timedelta
Example #1: Use pandas.tseries.offsets.CustomBusinessHour.offset attribute to print the self._offset value for the given offset.
# importing pandas as pdimport pandas as pd # Creating Timestampts = pd.Timestamp("2019-4-23 11:15:00") # Create an offsetcbh = pd.tseries.offsets.CustomBusinessHour(n = 2, weekmask = "Mon Tue Wed Thu", start ="12:00") # Print the Timestampprint(ts) # Print the Offsetprint(cbh) |
Выход :


Now we will add the offset to the given timestamp object to increment the datetime value. We will also print the self._offset value.
# Adding the offset to the given timestampnew_timestamp = ts + cbh # Print the updated timestampprint(new_timestamp) # return the self._offset valueresult = cbh.offset # print the resultprint(result) |
Выход :


Как видно из выходных данных, мы успешно создали смещение и добавили его к заданной временной метке. мы также напечатали значение self._offset для данного смещения.
Example #2: Use pandas.tseries.offsets.CustomBusinessHour.offset attribute to print the self._offset value for the given offset.
# importing pandas as pdimport pandas as pd # Creating Timestampts = pd.Timestamp("2019-4-23 11:15:00") # Create an offsetcbh = pd.tseries.offsets.CustomBusinessHour(start ="07:00", end ="14:00") # Print the Timestampprint(ts) # Print the Offsetprint(cbh) |
Выход :


Now we will add the offset to the given timestamp object to increment the datetime value. We will also print the self._offset value.
# Adding the offset to the given timestampnew_timestamp = ts + cbh # Print the updated timestampprint(new_timestamp) # move the passed timestamp to the # return the self._offset valueresult = cbh.offset # print the resultprint(result) |
Выход :


Как видно из выходных данных, мы успешно создали смещение и добавили его к заданной временной метке. мы также напечатали значение self._offset для данного смещения.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.