Code Monkey home page Code Monkey logo

Comments (3)

bradyrx avatar bradyrx commented on May 27, 2024 1

@aaronspring , I have implemented a fast method for removing polynomials from datasets in 69d2499

It's a little hacky, but I concatenate all variables into a single dimension, convert it to a numpy array, run the polynomial removal, then build the dataset back up.

from climpred.

bradyrx avatar bradyrx commented on May 27, 2024

@aaronspring, I agree that we should opt for Dataset capability.

For right now, a really simple implementation is using the .apply() function:

This is fast with the two variables and 10,10 lat/lon dimensions in this example. I'm not sure how fast it is with larger arrays.

So for now we could probably just update the stats module to check if it's a Dataset:

def _check_dataset(x):
    if isinstance(x, xr.Dataset):
        return True

Then for each function run _check_dataset(input) and then just run .apply() on itself?

from climpred.

aaronspring avatar aaronspring commented on May 27, 2024

Yep. That sounds good. I think there is now performance issue from np functions but rather those from scipy on larger grids.

from climpred.

Related Issues (20)

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.