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

Closes issue #586. Updates handling of nan behaviour in numpy.lib.function_base.median. #4287

Closed
wants to merge 24 commits into from

Commits on Feb 13, 2014

  1. ENH: added proper handling of nans for numpy.lib.function_base.median…

    …. This
    
    closes ticket# 2126 (issue #586)
    empeeu committed Feb 13, 2014
    Configuration menu
    Copy the full SHA
    a9eff96 View commit details
    Browse the repository at this point in the history
  2. ENH: added unit test for previous commit which updates median's handling

    of nans in reference to ticket #586
    empeeu committed Feb 13, 2014
    Configuration menu
    Copy the full SHA
    54aff25 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2014

  1. ENH: #586. Improved performance of nan handling in median function.

    Also added a flag "check_nan" that can be turned off to regain original
    performance.
    
    Also added nanmedian function to calculate the median while ignorning nans.
    empeeu committed Feb 17, 2014
    Configuration menu
    Copy the full SHA
    10902b5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8c2f007 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2014

  1. REV: Reverting nanmedian from this PR. Now deals exclusively with han…

    …dling of nans in median.
    empeeu committed Feb 18, 2014
    Configuration menu
    Copy the full SHA
    d8e3957 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2014

  1. numpy.i bugfix: fortran ordering check

    for ARGOUTVIEWM?_FARRAY[34] typemaps, the included require_fortran check was inverted -- failing if the resulting array had fortran ordering, not if it did not.  This modification inverts these checks.
    jspreston committed Feb 20, 2014
    Configuration menu
    Copy the full SHA
    aa615ad View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2014

  1. ENH: #586 Pulls in juliantaylor's specialization. New median with nan…

    … checking is now pretty much as fast as the old one. Hence, removed the check_nan flag from previous commits.
    empeeu committed Feb 26, 2014
    Configuration menu
    Copy the full SHA
    89d4d1e View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2014

  1. BUG: restore api for file npy_PyFile_Dup and npy_PyFile_DupClose

    breaking the api breaks matplotlib build and pip installation.
    Introduce npy_PyFile_Dup2 and npy_PyFile_DupClose2 as replacements
    juliantaylor committed Mar 5, 2014
    Configuration menu
    Copy the full SHA
    ea89757 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #4334 from jspreston/patch-1

    numpy.i bugfix: fortran ordering check
    charris committed Mar 5, 2014
    Configuration menu
    Copy the full SHA
    0bf8fec View commit details
    Browse the repository at this point in the history
  3. Merge pull request #4450 from juliantaylor/api-restore

    BUG: restore api for file npy_PyFile_Dup and npy_PyFile_DupClose
    charris committed Mar 5, 2014
    Configuration menu
    Copy the full SHA
    683bc33 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2014

  1. Revert "Merge pull request #4421 from meltingwax/meltingwax/4382"

    Caused SciPy tests to fail when built with this NumPy.
    Daniel da Silva committed Mar 6, 2014
    Configuration menu
    Copy the full SHA
    4b2b77e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #4451 from meltingwax/meltingwax/revert-4421

    BUG: Revert PR #4421: causes SciPy tests to fail
    charris committed Mar 6, 2014
    Configuration menu
    Copy the full SHA
    a6f9b78 View commit details
    Browse the repository at this point in the history
  3. TST: work around outdated travis boxes

    run manual apt-get update to pick up the latest py3 security update
    juliantaylor committed Mar 6, 2014
    Configuration menu
    Copy the full SHA
    bf2a953 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2014

  1. Configuration menu
    Copy the full SHA
    ea75479 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #4457 from cimarronm/linalg_lstsq_docfix

    DOC: Fixed documentation on lstsq function on when it return an empty re...
    seberg committed Mar 7, 2014
    Configuration menu
    Copy the full SHA
    b099017 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #4456 from juliantaylor/travis-updates

    work around outdated travis boxes
    juliantaylor committed Mar 7, 2014
    Configuration menu
    Copy the full SHA
    0007cd6 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #4459 from Sankarshan-Mudkavi/fix-gh-1367

    ENH: Added an output argument for numpy.outer
    juliantaylor committed Mar 7, 2014
    Configuration menu
    Copy the full SHA
    4da29a8 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2014

  1. ENH: added proper handling of nans for numpy.lib.function_base.median…

    …. This
    
    closes ticket# 2126 (issue #586)
    empeeu committed Mar 8, 2014
    Configuration menu
    Copy the full SHA
    c35542c View commit details
    Browse the repository at this point in the history
  2. ENH: added unit test for previous commit which updates median's handling

    of nans in reference to ticket #586
    empeeu committed Mar 8, 2014
    Configuration menu
    Copy the full SHA
    210f534 View commit details
    Browse the repository at this point in the history
  3. ENH: #586. Improved performance of nan handling in median function.

    Also added a flag "check_nan" that can be turned off to regain original
    performance.
    
    Also added nanmedian function to calculate the median while ignorning nans.
    empeeu committed Mar 8, 2014
    Configuration menu
    Copy the full SHA
    22eeef0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2d8f3ed View commit details
    Browse the repository at this point in the history
  5. REV: Reverting nanmedian from this PR. Now deals exclusively with han…

    …dling of nans in median.
    empeeu committed Mar 8, 2014
    Configuration menu
    Copy the full SHA
    52ccb4e View commit details
    Browse the repository at this point in the history
  6. ENH: #586 Pulls in juliantaylor's specialization. New median with nan…

    … checking is now pretty much as fast as the old one. Hence, removed the check_nan flag from previous commits.
    empeeu committed Mar 8, 2014
    Configuration menu
    Copy the full SHA
    cbca46c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d76ed36 View commit details
    Browse the repository at this point in the history