Skip to content

Instantly share code, notes, and snippets.

@giacecco
Last active August 29, 2015 14:25
Show Gist options
  • Save giacecco/f4f545cfd364865a231d to your computer and use it in GitHub Desktop.
Save giacecco/f4f545cfd364865a231d to your computer and use it in GitHub Desktop.
# find how many opportunities for applying the inference algorithm are available, and min and max
# aon per street
lrpp_streets_for_inference <- lrpp_addresses_with_numeric_aon %>% group_by(street, pcd) %>% summarise(minAon = min(aon), maxAon = max(aon), how_many = n()) %>% filter(how_many > 1)
> nrow(lrpp_streets_for_inference)
[1] 7002
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment