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

Implement dimension-aware skipmissing #27818

Closed
wants to merge 2 commits into from

Commits on Jun 27, 2018

  1. Implement dimension-aware skipmissing

    Allows compact notation for `skipmissing` over multidimensional arrays. Can be composed with basic stats functions to provide functionality similar to Matlab & Numpy's `nanmean(array, dim)`, etc:
    ```
    julia> mean.(skipmissing([1 missing; 3 4], 1))
    1×2 Array{Float64,2}:
     2.0  4.0
    ```
    stillyslalom authored Jun 27, 2018
    Configuration menu
    Copy the full SHA
    e2495de View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c15e3e8 View commit details
    Browse the repository at this point in the history