SERVER-549521 Anomalies Twitter + GESD Methods
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 | |
# Get only SERVER549521 access | |
SERVER549521 <- security_access_logs %>% | |
filter(server == "SERVER-549521") %>% | |
ungroup() | |
# Anomalize!! | |
SERVER549521 %>% | |
# Twitter + GESD | |
time_decompose(count, method = "twitter", trend = "4 months") %>% | |
anomalize(remainder, method = "gesd") %>% | |
time_recompose() %>% | |
# Anomaly Visualziation | |
plot_anomalies(time_recomposed = TRUE) + | |
labs(title = "SERVER-549521 Anomalies", subtitle = "Twitter + GESD Methods") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment