Welcome to Sklearn xarray’s documentation!¶
Contents:
Installation¶
Stable release¶
To install Sklearn xarray, run this command in your terminal:
$ pip install sklearn_xarray
This is the preferred method to install Sklearn xarray, as it will always install the most recent stable release.
If you don’t have pip installed, this Python installation guide can guide you through the process.
From sources¶
The sources for Sklearn xarray can be downloaded from the Github repo.
You can either clone the public repository:
$ git clone git://github.com/nbren12/sklearn_xarray
Or download the tarball:
$ curl -OL https://github.com/nbren12/sklearn_xarray/tarball/master
Once you have a copy of the source, you can install it with:
$ python setup.py install
API Reference¶
Transformers¶
These classes implement the scikit-learn interface for transformations, and make working with xarray objects a breeze.
Select ([key, sel]) |
|
Stacker ([feature_dims]) |
|
XarrayUnion (transformer_list[, n_jobs, …]) |
A version of feature union which keeps track of the index |
To see how to use these classes in conjuction with scikit-learn see Linear Regression of multivariate data.
Contributing¶
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
You can contribute in many ways:
Types of Contributions¶
Report Bugs¶
Report bugs at https://github.com/nbren12/sklearn_xarray/issues.
If you are reporting a bug, please include:
- Your operating system name and version.
- Any details about your local setup that might be helpful in troubleshooting.
- Detailed steps to reproduce the bug.
Fix Bugs¶
Look through the GitHub issues for bugs. Anything tagged with “bug” and “help wanted” is open to whoever wants to implement it.
Implement Features¶
Look through the GitHub issues for features. Anything tagged with “enhancement” and “help wanted” is open to whoever wants to implement it.
Write Documentation¶
Sklearn xarray could always use more documentation, whether as part of the official Sklearn xarray docs, in docstrings, or even on the web in blog posts, articles, and such.
Submit Feedback¶
The best way to send feedback is to file an issue at https://github.com/nbren12/sklearn_xarray/issues.
If you are proposing a feature:
- Explain in detail how it would work.
- Keep the scope as narrow as possible, to make it easier to implement.
- Remember that this is a volunteer-driven project, and that contributions are welcome :)
Get Started!¶
Ready to contribute? Here’s how to set up sklearn_xarray for local development.
Fork the sklearn_xarray repo on GitHub.
Clone your fork locally:
$ git clone git@github.com:your_name_here/sklearn_xarray.git
Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:
$ mkvirtualenv sklearn_xarray $ cd sklearn_xarray/ $ python setup.py develop
Create a branch for local development:
$ git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
When you’re done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox:
$ flake8 sklearn_xarray tests $ python setup.py test or py.test $ tox
To get flake8 and tox, just pip install them into your virtualenv.
Commit your changes and push your branch to GitHub:
$ git add . $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature
Submit a pull request through the GitHub website.
Pull Request Guidelines¶
Before you submit a pull request, check that it meets these guidelines:
- The pull request should include tests.
- If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst.
- The pull request should work for Python 2.6, 2.7, 3.3, 3.4 and 3.5, and for PyPy. Check https://travis-ci.org/nbren12/sklearn_xarray/pull_requests and make sure that the tests pass for all supported Python versions.
Credits¶
Development Lead¶
- Noah D Brenowitz <nbren12@gmail.com>
Contributors¶
None yet. Why not be the first?
Examples¶
These are examples of how to use this package.
Test of sphinx gallery¶
This is a test of sphinx gallery

import numpy as np
import matplotlib.pyplot as plt
plt.plot(np.random.rand(10))
Total running time of the script: ( 0 minutes 0.127 seconds)
Linear Regression of multivariate data¶
In this example, we demonstrate how to use sklearn_xarray classes to solve a simple linear regression problem on synthetic dataset.
This class demonstrates the use of Stacker
and
Select
.
import numpy as np
import xarray as xr
from sklearn.linear_model import LinearRegression
from sklearn.pipeline import make_pipeline, make_union
from sklearn_xarray import Stacker, Select
# Make synthetic data
lat, lon = np.ogrid[-45:45:50j, 0:360:100j]
noise = np.random.randn(lat.shape[0], lon.shape[1])
data_vars = {
'a': (['lat', 'lon'], np.sin(lat/90 + lon/100)),
'b': (['lat', 'lon'], np.cos(lat/90 + lon/100)),
'noise': (['lat', 'lon'], noise)
}
coords = {'lat': lat.ravel(), 'lon': lon.ravel()}
dataset = xr.Dataset(data_vars, coords)
make a simple linear model for the output
x = dataset[['a', 'b']]
y = dataset.a + dataset.b * .5 + .3 * dataset.noise + 1
y.plot()

now we want to fit a linear regression model using these data
mod = make_pipeline(
make_union(
make_pipeline(Select('a'), Stacker()),
make_pipeline(Select('b'), Stacker())),
LinearRegression())
for now we have to use Stacker manually to transform the output data into a 2d array
y_np = Stacker().fit_transform(y)
print(y_np)
Out:
<xarray.DataArray (samples: 5000, features: 1)>
array([[ 1.138895],
[ 0.799281],
[ 0.790091],
...,
[-0.134265],
[ 0.388912],
[-0.173836]])
Coordinates:
* samples (samples) MultiIndex
- lat (samples) float64 -45.0 -45.0 -45.0 -45.0 -45.0 -45.0 -45.0 ...
- lon (samples) float64 0.0 3.636 7.273 10.91 14.55 18.18 21.82 ...
* features (features) int64 1
fit the model
mod.fit(x, y_np)
# print the coefficients
lm = mod.named_steps['linearregression']
coefs = tuple(lm.coef_.flat)
print("The exact regression model is y = 1 + a + .5 b + noise")
print("The estimated coefficients are a: {}, b: {}".format(*coefs))
print("The estimated intercept is {}".format(lm.intercept_[0]))
Out:
The exact regression model is y = 1 + a + .5 b + noise
The estimated coefficients are a: 0.9826705586550489, b: 0.5070234156860342
The estimated intercept is 1.0154227436758414
Total running time of the script: ( 0 minutes 0.584 seconds)