This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| from pandas.tseries.holiday import ( | |
| Holiday, AbstractHolidayCalendar, next_monday, | |
| MO, TU, FR, next_monday_or_tuesday, | |
| GoodFriday, EasterMonday | |
| ) | |
| class VictorianHolidays(AbstractHolidayCalendar): | |
| rules = [ | |
| Holiday("New Year's Day", month=1, day=1, observance=next_monday), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dkent@devel-vm:~/src/conda-env$ conda info --all | |
| Using Anaconda Cloud api site https://api.anaconda.org | |
| Current conda install: | |
| platform : linux-32 | |
| conda version : 3.19.0 | |
| conda-build version : not installed | |
| python version : 3.5.1.final.0 | |
| requests version : 2.9.1 | |
| root environment : /home/dkent/miniconda3 (writable) |