R/tabIPAddress.R

tabIPAddress <- function(datos) {
  
  datos %>%
    group_by(ipaddr) %>%
    summarise(count = n()) %>%
    filter(count >= 2) %>%
    ungroup() %>%
    arrange(desc(count))
}
diegojedwards/functions_app documentation built on May 23, 2019, 3:04 p.m.