Last active
June 3, 2018 21:57
-
-
Save holisticinfosec/46e4dbb87d5c7b150d164c8769a91024 to your computer and use it in GitHub Desktop.
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