Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@

To set up an enviroment for this tutorial use

$ conda create -n mpl-tutorial -c conda-forge -c conda-forge/label/rc 'matplotlib>1.6' pandas pytables ipython python=3
$ conda env create -f environment.yml

or

$ conda create -n mpl_tutorial -c anaconda matplotlib pandas pytables h5py ipython scipy python=3.6


for *nix

Expand Down
12 changes: 12 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: mpl-tutorial
channels:
- anaconda
- defaults
dependencies:
- h5py
- ipython
- matplotlib
- pandas
- pytables
- scipy
- python=3.6
2 changes: 1 addition & 1 deletion weather/key/04-custom_plotting.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import matplotlib.pyplot as plt
from pddc_helpers import load_bwi_data, aggregate_by_month
from w_helpers import load_bwi_data, aggregate_by_month
plt.ion()

bwi = load_bwi_data()
Expand Down