-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
No isnull for arrays? #16112
Comments
What do you envision |
Returning a boolean array with the values that are null. Something On Thu, Apr 28, 2016, at 17:56, John Myles White wrote:
Links: |
So it would be vectorized. I think that's not the best path forward for two reasons:
|
|
Thanks everyone for weighing in. I guess with #13412 merged, using an anonymous function will be plenty fast. |
@tlnagy As @andreasnoack said, you don't need an anonymous function at all, so it's already fast in 0.4. Also, with the syntax proposed at #8450, you might be able to write it as |
@nalimilan Good catch. I thought that used an anonymous function internally, but now I realize that doesn't make too much sense. Thanks! |
Base doesn't have any way of checking which positions in an array have valid values.
while the following works
The text was updated successfully, but these errors were encountered: