Search
Search Results
Search finished, found 8 page(s) matching the search query.
- numpy.busday_offset
...NumPy reference Routines and objects by topic Datetime support functions numpy.busday_offset...
- numpy.busday_offset (Python function, in numpy.busday_offset)
- NumPy 1.10.4 Release Notes
...hopefully will not cause problems. Issues Fixed gh-6922 BUG: numpy.recarray.sort segfaults on Windows. gh-6937 BUG: busday_offset does the wrong thing with modifiedpreceding roll. gh-6949 BUG: Type is lost when slicing a subclass of rec...
- numpy.busday_count
...ycalendarAn object that specifies a custom set of valid days. is_busdayReturns a boolean array indicating valid days. busday_offsetApplies an offset counted in valid days. Examples >>> import numpy as np >>> # Number of weekdays in Jan...
- numpy.busday_offset
...NumPy reference Routines and objects by topic Datetime support functions numpy.busday_offset...
- numpy.busdaycalendar
...ing the specified weekmask and holidays values. See also is_busdayReturns a boolean array indicating valid days. busday_offsetApplies an offset counted in valid days. busday_countCounts how many valid days are in a half-open date ra...
- numpy.is_busday
...day, and False for each invalid day. See also busdaycalendarAn object that specifies a custom set of valid days. busday_offsetApplies an offset counted in valid days. busday_countCounts how many valid days are in a half-open date ra...
- Datetimes and timedeltas
...usday” functions can additionally check a list of “holiday” dates, specific dates that are not valid days. The function busday_offset allows you to apply offsets specified in business days to datetimes with a unit of ‘D’ (day). Example >>>...