Thin wrapper around arima() that fixes p = 0 and d = 0.
Equivalent to arima(time, by, p = 0, d = 0, q = q).
Value
An enw_arima_term interpretable by construct_arima().
See also
Functions used to help convert formulas into model designs
ar(),
arima(),
arima_terms(),
arma(),
as_string_formula(),
construct_arima(),
construct_gp(),
construct_re(),
construct_rw(),
enw_formula(),
enw_manual_formula(),
gp(),
gp_terms(),
parse_formula(),
re(),
remove_arima_terms(),
remove_gp_terms(),
remove_rw_terms(),
rw(),
rw_terms(),
split_formula_to_terms()
Examples
ma(time)
#> $time
#> [1] "time"
#>
#> $by
#> NULL
#>
#> $p
#> [1] 0
#>
#> $d
#> [1] 0
#>
#> $q
#> [1] 1
#>
#> attr(,"class")
#> [1] "enw_arima_term"
ma(time, location, q = 2)
#> $time
#> [1] "time"
#>
#> $by
#> [1] "location"
#>
#> $p
#> [1] 0
#>
#> $d
#> [1] 0
#>
#> $q
#> [1] 2
#>
#> attr(,"class")
#> [1] "enw_arima_term"
