This repository contains my analysis of ???. I split my analysis into several Jupyter notebooks. To walk through my analysis, click on the links to the notebooks below. Look at the instructions at the bottom of this file if you want to reproduce or modify this analysis on your machine.
- Exploratory Data Analysis
- Interactive Dashboard made with Plotly Dash and hosted on Heroku
These are the steps you'll need to take the first time you touch this:
- Clone this repo:
git clone <this repo url>
- Create a conda environment if conda is available, or pip environment otherwise.
make create_environment
- Activate the new environment. With conda, this looks like
source activate altakehome
With pip it looks like
workon altakehome
- Install python requirements. (This will use pip even if you have a conda environment. That's just fine.)
make requirements
- Create
.env
file by runningcp .env.template .env
. Put the correct tokens and passwords there. Several scripts rely on.env
to find the this project's root directory.
Every time you want to come back and run some analysis code, you'll need to run
source activate altakehome
first to reactivate the environment you created.
Project based on the cookiecutter data science project template. #cookiecutterdatascience