easystats / report

:scroll: :tada: Automated reporting of objects in R
https://easystats.github.io/report/
Other
694 stars 70 forks source link

Report Summary for Time Series Model Stats #413

Open luna02100 opened 9 months ago

luna02100 commented 9 months ago

Describe the solution you'd like I would like to suggest of adding report summary of time series models (e.g. ARIMA, ses). The report class can be work for the class of time series models (ARIMA or Exponential Smoothing Method (ses), and other time series models from either stats or forecast package).

How could we do it? Similar to report summary from lm() class:

auto.arima(AirPassengers) %>% report()

Also, if you add this features, don't forget the summary of exogenous regressors (if there's any) and other statistics, such as the diagnostics of the time series models (e.g. Ljung-Box test, ARCH test).

Thank you