Skip to content

Instantly share code, notes, and snippets.

@holisticinfosec
Last active June 3, 2018 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save holisticinfosec/46e4dbb87d5c7b150d164c8769a91024 to your computer and use it in GitHub Desktop.
Save holisticinfosec/46e4dbb87d5c7b150d164c8769a91024 to your computer and use it in GitHub Desktop.
Security Access Logs Function
# 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