Skip to content

Commit

Permalink
update xarray v in binder
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Hamman committed Jun 16, 2020
2 parents 6a93716 + 8b8022f commit 4faf6be
Show file tree
Hide file tree
Showing 3 changed files with 309 additions and 92 deletions.
395 changes: 306 additions & 89 deletions examples/2020ECAHM-scikit-downscale.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions examples/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def prob_plots(x, y, y_hat, shape=(2, 2), figsize=(8, 8)):

def zscore_ds_plot(training, target, future, corrected):
labels = ["training", "future", "target", "corrected"]
colors = {k: c for (k, c) in zip(labels, sns.color_palette("Paired", n_colors=4))}
colors = {k: c for (k, c) in zip(labels, sns.color_palette("Set2", n_colors=4))}

alpha = 0.5

Expand Down Expand Up @@ -128,7 +128,7 @@ def zscore_correction_plot(zscore):
corrected_std = corrected_std.groupby(corrected_std.index.dayofyear).mean()

labels = ["training", "future", "target", "corrected"]
colors = {k: c for (k, c) in zip(labels, sns.color_palette("Paired", n_colors=4))}
colors = {k: c for (k, c) in zip(labels, sns.color_palette("Set2", n_colors=4))}

doy = 20

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
install_requires=install_requires,
tests_require=["pytest >= 2.7.1"],
url="https://github.com/jhamman/scikit-downscale",
packages=["skdownscale"],
packages=PACKAGES,
use_scm_version={"version_scheme": "post-release", "local_scheme": "dirty-tag"},
setup_requires=["setuptools_scm", "setuptools>=30.3.0"],
)

0 comments on commit 4faf6be

Please sign in to comment.