Skip to content

Commit

Permalink
Simplify VARIMA example
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchelloharawild committed Sep 24, 2024
1 parent 582a1d0 commit 26e7378
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions R/VARIMA.R
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ specials_varima <- new_specials(
#' library(tsibbledata)
#'
#' aus_production %>%
#' autoplot(vars(Beer, Tobacco, Bricks))
#' autoplot(vars(Beer, Cement))
#'
#' fit <- aus_production[complete.cases(aus_production),] %>%
#' model(VARIMA(vars(Beer, Bricks, Cement) ~ pdq(4,1,1), identification = "none"))
#' fit <- aus_production %>%
#' model(VARIMA(vars(Beer, Cement) ~ pdq(4,1,1), identification = "none"))
#'
#' fit
#' @export
Expand Down
6 changes: 3 additions & 3 deletions man/VARIMA.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 26e7378

Please sign in to comment.