Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip past points at the same time in derivative call within a merged series #7293

Merged
merged 1 commit into from Sep 19, 2016

Commits on Sep 13, 2016

  1. Skip past points at the same time in derivative call within a merged …

    …series
    
    The derivative() call would panic if it received two points at the same
    time because it tried to divide by zero. The derivative call now skips
    past these points. To avoid skipping past these points, use `GROUP BY *`
    so that each series is kept separated into their own series.
    
    The difference() call has also been modified to skip past these points.
    Even though difference doesn't divide by the time, difference is
    supposed to perform the same as derivative, but without dividing by the
    time.
    jsternberg committed Sep 13, 2016
    Copy the full SHA
    0b94f5d View commit details
    Browse the repository at this point in the history