We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
>>> np.sum([1, 2], keepdims=True) array([3]) >>> ma.sum([1, 2], keepdims=True) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "numpy/ma/core.py", line 6025, in __call__ return method(MaskedArray(a), *args, **params) TypeError: sum() got an unexpected keyword argument 'keepdims'
The text was updated successfully, but these errors were encountered:
Fixed in master.
Sorry, something went wrong.
I'm just running in to this issue with np.ma.mean(). Was that method fixed as part of this effort?
No branches or pull requests
The text was updated successfully, but these errors were encountered: