Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Local plotting #2

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6,700 changes: 6,458 additions & 242 deletions Forecasting a Time Series in Python.ipynb

Large diffs are not rendered by default.

29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,29 @@
# Blog-Posts
This is the Repo for the Notebooks for our Blog Posts

This is the Repo for the Notebooks for our Blog Posts.

## Setup & Running

To run notebooks in this repo, you'll need to recreate the kernel used to
create them. You can do this quite simply. First, create the conda env by
navigating to the project directory and running:

```
$ conda env create -f env.yml
```

Then you'll need to register this environment as an ipython kernel ([1]). Use the
following command:

```
$ conda activate
(auto-arima) $ python -m ipykernel install --user --name auto-arima --display-name "Auto-Arima (Py3)"
```

Now you'll be able to run the notebooks via Jupyter notebook or Jupyterhub.

If you don't have `conda` installed, you can get it with the `miniconda`
distribtution ([2]).

[1]: https://ipython.readthedocs.io/en/stable/install/kernel_install.html
[2]: https://conda.io/miniconda.html
14 changes: 14 additions & 0 deletions env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: auto-arima
channels:
- defaults
dependencies:
- ipykernel=5.1.0
- matplotlib=3.0.1
- pandas=0.23.4
- python=3.6
- scikit-learn=0.20.0
- statsmodels=0.9.0
- pip:
- cufflinks==0.14.5
- plotly==3.3.0
- pyramid-arima==0.8.1