Security Access Logs Function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Created from Anomalize project, Matt Dancho | |
# https://github.com/business-science/anomalize | |
library(dplyr) | |
library(tibbletime) | |
setwd("C:/coding/R/anomalize/") | |
logs <- read_csv("log.csv") | |
security_access_logs <- logs %>% | |
group_by(server) %>% | |
as_tbl_time(date) | |
security_access_logs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment