-
Notifications
You must be signed in to change notification settings - Fork 5
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
@subset
should have implicit skipmissing = true, or provide an option to specify
#7
Comments
you can use keywords with all macros, so And maybe I'll put in a shortcut for |
Ahh I see, thanks for the quick response! Yeah I was getting caught out when using the Chain.jl workflow. The following seems to work: @subset(_, predicates...; kwargs...) |
Macro keyword arguments work now in Chain.jl jkrumbiegel/Chain.jl#31 |
Oh wow awesome thanks! |
This is an awesome package :) - I really like the 'rowwise by default' operations.
Currently
@subset
will fail for a simple:col == X
predicate if :col contains missing values. I think that for most users it might be preferable to have skipmissing set to true by default. Or failing that to allow a skipmissing option. There is of course the third option of the user writing something likeismissing(:col) ? false : :col == X
, but that makes things more verboseThe text was updated successfully, but these errors were encountered: