Returns the coefficients from the model in a tibble format.

# S3 method for croston
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

library(tsibble)
sim_poisson <- tsibble(
  time = yearmonth("2012 Dec") + seq_len(24),
  count = rpois(24, lambda = 0.3),
  index = time
)

sim_poisson %>%
  model(CROSTON(count)) %>%
  tidy()
#> # A tibble: 4 × 3
#>   .model         term          estimate
#>   <chr>          <chr>            <dbl>
#> 1 CROSTON(count) demand_init      0.965
#> 2 CROSTON(count) demand_par       0    
#> 3 CROSTON(count) interval_init    3.86 
#> 4 CROSTON(count) interval_par     0