This repo contains files related to the Clipboard Health WBD practice problem I was asked to complete. Does not include raw data file.
This notebook was developed and tested on a MacBook Air running macOS 11.5.1.
$ brew update
$ brew install pyenv
$ pyenv install 3.9.5
$ pyenv shell 3.9.5
$ pip install --user --upgrade pipenv
Notes:
- installing
pyenv
viabrew
, I did not need to update .zprofile per instructions
$ git clone [email protected]:bootstrapt/clipboard-health-wbd-notebook.git
$ cd clipboard-health-wbd-notebook
$ export SYSTEM_VERSION_COMPAT=1
$ pipenv install notebook pandas numpy scipy seaborn matplotlib ipywidgets openpyxl
Notes:
- see references [1] re: SYSTEM_VERSION_COMPAT_
From project root:
$ pipenv shell
$ jupyter notebook
To publish this notebook, update ./html/index.html
and push to github.
$ sudo chmod +x ./publish_to_github_pages.sh
$ ./publish_to_github_pages.sh
$ jupyter nbconvert pricing_wbd.ipynb --no-input --no-prompt --to=html --output-dir=docs --output=index.html
$ git commit -am "updated ./docs/index.html with latest notebook output"
$ git push