Skip to contents

Returns the coefficients from the model in a `tibble` format.

Usage

# S3 method for INGARCH
tidy(x, ...)

Arguments

x

An object to be converted into a tidy tibble::tibble().

...

Additional arguments to tidying method.

Value

The model's coefficients in a `tibble`.

Examples

tsibbledata::aus_production |>
  fabletools::model(manual_ing = INGARCH(Beer ~ pq(1,1))) |>
  dplyr::select(manual_ing) |>
  fabletools::tidy()
#> # A tibble: 3 × 6
#>   .model     term       estimate std.error `CI(lower)` `CI(upper)`
#>   <chr>      <chr>         <dbl>     <dbl>       <dbl>       <dbl>
#> 1 manual_ing (constant)    6.60     1.47         3.71        9.48 
#> 2 manual_ing ar_1          0.190    0.0198       0.151       0.228
#> 3 manual_ing ma_1          0.791    0.0224       0.747       0.835