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
filter
Galah already supports filtering using %in%, and it would be great if ! %in% were also supported. For example, this works:
%in%
! %in%
ibra_subset <- c("Brigalow Belt North", "Brigalow Belt South", "Central Mackay Coast") galah_call() |> identify("Crinia signifera") |> filter(cl1048 %in% ibra_subset) |> atlas_counts() # A tibble: 1 × 1 count <int> 1 1872
but this doesn't:
ibra_subset <- c("Brigalow Belt North", "Brigalow Belt South", "Central Mackay Coast") galah_call() |> identify("Crinia signifera") |> filter(!cl1048 %in% ibra_subset) |> atlas_counts() # A tibble: 1 × 1 count <int> 1 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Galah already supports filtering using
%in%
, and it would be great if! %in%
were also supported. For example, this works:but this doesn't:
The text was updated successfully, but these errors were encountered: