Skip to content

Commit 72a66b8

Browse files
minor changes in examples notebook
1 parent 17542cd commit 72a66b8

File tree

8 files changed

+42
-63
lines changed

8 files changed

+42
-63
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ __pycache__
44

55
build/
66
dist/
7-
*.egg-info/
7+
*.egg-info/
8+
conda.stuff/

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Bias-Adjustment-Python
2-
2+
[![Generic badge](https://img.shields.io/badge/license-MIT-green.svg)](https://shields.io/)
3+
[![Generic badge](https://img.shields.io/badge/python-3.7+-blue.svg)](https://shields.io/)
4+
[![GitHub](https://badgen.net/badge/icon/github?icon=github&label)](https://github.com/btschwertfeger/Bias-Adjustment-Python)
35
Collection of different scale- and distribution-based bias adjustment techniques for climatic research. (see `examples.ipynb` for help)
46

57
Bias adjustment procedures in Python are very slow, so they should not be used on large data sets.

cmethods/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION = (0,0,0,0,1,16)
1+
VERSION = (0,5)
22
__version__ = '.'.join(map(str, VERSION))
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
xarray
21
numpy
2+
xarray
33
tqdm

examples.ipynb

Lines changed: 21 additions & 45 deletions
Large diffs are not rendered by default.

requirements.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717

1818
# What packages are required for this module to be executed?
1919
REQUIRED = [
20-
'xarray', 'tqdm' # <- always conflicts on install with tqdm
20+
'xarray', 'numpy', 'tqdm' # <- always conflicts on install with tqdm
2121
]
2222

2323
# What packages are optional?
2424
EXTRAS = {
25-
# 'fancy feature': ['django'],
25+
'working examples notebook': ['matplotlib'],
2626
}
2727

2828
here = os.path.abspath(os.path.dirname(__file__))

test.ipynb

Lines changed: 12 additions & 7 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)