if (FALSE) {
# default usage is for grouping counts
galah_call() |>
group_by(basisOfRecord) |>
counts() |>
collect()
# Alternatively, we can use this with an occurrence search
galah_call() |>
filter(year == 2024,
genus = "Crinia") |>
group_by(speciesID) |>
collect()
# note that this example is equivalent to `atlas_species()`;
# but using `group_by()` is more flexible.
}
Run the code above in your browser using DataLab