if (FALSE) {
# Limit number of rows returned to 3.
# In this case, our query returns the top 3 years with most records.
galah_call() |>
identify("perameles") |>
filter(year > 2010) |>
group_by(year) |>
count() |>
slice_head(n = 3) |>
collect()
}
Run the code above in your browser using DataLab