
{{alias}}()
    Returns an accumulator function which incrementally computes a corrected
    sample skewness, ignoring `NaN` values.

    If provided a value, the accumulator function returns an updated corrected
    sample skewness. If not provided a value, the accumulator function returns
    the current corrected sample skewness.

    Returns
    -------
    acc: Function
        Accumulator function.

    Examples
    --------
    > var acc = {{alias}}();
    > var v = acc( 2.0 )
    null
    > v = acc( -5.0 )
    null
    > v = acc( -10.0 )
    ~0.492
    > v = acc( NaN )
    ~0.492
    > v = acc()
    ~0.492

    See Also
    --------
