tabIPAddress <- function(datos) {
datos %>%
group_by(ipaddr) %>%
summarise(count = n()) %>%
filter(count >= 2) %>%
ungroup() %>%
arrange(desc(count))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.