Skip to content

Instantly share code, notes, and snippets.

@MJacobs1985
Created February 21, 2022 15:04
Show Gist options
  • Select an option

  • Save MJacobs1985/113f7b4d582deafa0402e25c40be74c4 to your computer and use it in GitHub Desktop.

Select an option

Save MJacobs1985/113f7b4d582deafa0402e25c40be74c4 to your computer and use it in GitHub Desktop.
arc_month%>%
filter(!is.na(sampledate))%>%
plot_acf_diagnostics(sampledate, rochef,
.lags=24,
.facet_ncol = 2,
.facet_scales = "free")
arc_month%>%
filter(!is.na(sampledate))%>%
plot_seasonal_diagnostics(sampledate, rochef, .interactive = FALSE)
arc_month %>%
filter(!is.na(sampledate))%>%
plot_stl_diagnostics(sampledate, rochef,
.frequency = "auto", .trend = "auto",
.feature_set = c("observed", "season", "trend", "remainder"),
.interactive = FALSE)
arc_month %>%
filter(!is.na(sampledate))%>%
plot_stl_diagnostics(sampledate, length,
.frequency = "auto", .trend = "auto",
.feature_set = c("observed", "season", "trend", "remainder"),
.interactive = FALSE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment