If user-specified location is not present in the data set, suggest locations with most checklists. This could also be done by a flag when calling yardlistr(), e.g. suggest = TRUE.
dat |> count(Location, name = "checklists") |> arrange(-checklists) |> head(10)
If user-specified location is not present in the data set, suggest locations with most checklists. This could also be done by a flag when calling
yardlistr(), e.g.suggest = TRUE.