GithubHelp home page GithubHelp logo

clif's Introduction

clif

clif is a CLImate Fingerprinting library that calculates empirical orthogonal functions for mainly climate data.

Installation

The code is super easy to install with pip. Make sure you have numpy, scikit-learn, and xarray. Then, after cloning, cd into the clif directory, i.e. the folder with the setup.py, and run

pip install .

You can also run a suite of unit tests and regression tests before installation with

python -m pytest clif/tests

to check that the library works. That's it! Now you are ready to use clif.

Quickstart

Once you have successfully installed clif, you can compute EOFs of data (as a numpy array for now) as follows.[#]_

from clif import fingerprints
from sklearn import datasets

X = datasets.load_digits().data
fp = fingerprints(n_eofs=8)
fp.fit(X)
EOFs = fp.eofs_

Preprocessing

clif also has a bunch of preprocessing transforms useful for manipulating xarray DataArrays. To see more information from the documentation, go to the docs/ folder and open index.html. All transforms are templated and use the following pseudo code interface.

from clif import preprocessing

X = load_xarray_data()
xarrayTransform = preprocessing.TransformName(**init_params)))
X_transformed = xarrayTransform.fit_transform(X)

clif's People

Contributors

kennychowdhary avatar jjakenichol avatar

Watchers

 avatar

Forkers

anujshetty

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.