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

BUG: fix weightstats quantile for len 1 array #7047

Closed
wants to merge 4 commits into from

Commits on Sep 16, 2020

  1. Only squeeze weights if more than 1D

    Squeezing a 1D array with only 1 element creates a zero dimensional array/scalar, which then causes an error in quantile because a scalar has no length.
    brl0 committed Sep 16, 2020
    Configuration menu
    Copy the full SHA
    b1d2572 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2020

  1. Configuration menu
    Copy the full SHA
    2fcbc3c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    adfa4e7 View commit details
    Browse the repository at this point in the history
  3. Fix for len 1 array, add tests

    brl0 committed Sep 19, 2020
    Configuration menu
    Copy the full SHA
    1a10419 View commit details
    Browse the repository at this point in the history