-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: Better parallel implementation of linear regression (#62)
* started refactoring the the linregress function * added nb, whats-new Co-authored-by: jbusecke <[email protected]>
- Loading branch information
Showing
8 changed files
with
520 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,7 @@ coverage.xml | |
|
||
# Sphinx documentation | ||
docs/_build/ | ||
doc/_build/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: xarrayutils-docs | ||
dependencies: | ||
- python | ||
- future | ||
- pytest | ||
- numpydoc | ||
- sphinx | ||
- sphinx_rtd_theme | ||
- ipykernel | ||
# Packages which are needed to execute your examples | ||
# These will vary | ||
- ipython | ||
- matplotlib | ||
- xarray | ||
- netcdf4 | ||
- dask | ||
- numpy | ||
- nc-time-axis | ||
- astropy | ||
# | ||
- pip: | ||
- docrep | ||
- nbsphinx | ||
- jupyter_client | ||
- jupyter-sphinx |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
.. currentmodule:: xarrayutils | ||
|
||
What's New | ||
=========== | ||
|
||
.. _whats-new.0.3.0: | ||
|
||
v0.2.0 (unreleased) | ||
|
||
Breaking changes | ||
~~~~~~~~~~~~~~~~ | ||
- Refactored implementation of :py:meth:`utils.xr_linregress`: Scales better and | ||
does not require rechunking the data anymore. No more `nanmask` option available | ||
(:pull:`62`) | ||
By `Julius Busecke <https://github.com/jbusecke>`_ | ||
|
||
New Features | ||
~~~~~~~~~~~~ | ||
|
||
Bug fixes | ||
~~~~~~~~~ | ||
|
||
|
||
Documentation | ||
~~~~~~~~~~~~~ | ||
- Added example notebook for `xarrayutils.utils` | ||
|
||
|
||
Internal Changes | ||
~~~~~~~~~~~~~~~~ | ||
|
||
|
||
|
||
v0.1.3 | ||
---------------------- | ||
Changes not documented for this release and earlier |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
__version__ = "0.1.0" | ||
from . import utils | ||
from . import numpy_utils | ||
from . import xmitgcm_utils | ||
from .utils import * | ||
|
||
from ._version import get_versions | ||
__version__ = get_versions()['version'] | ||
|
||
__version__ = get_versions()["version"] | ||
del get_versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters