| summary.inz_frct {iNZightTS} | R Documentation |
Summary method for objects of class inz_frct.
## S3 method for class 'inz_frct' summary(object, var = NULL, ...) ## S3 method for class 'summary_inz_frct' print(x, show_details = FALSE, ...)
object |
An |
var |
A character vector specifying the variable to summarize,
or set to |
... |
Additional arguments (ignored). |
x |
A 'summary_inz_frct' object containing forecast summaries. |
show_details |
Logical; set to 'TRUE' to show model details only when 'pred_model' is an "ARIMA" model. |
A summary_inz_frct object containing the first few forecast
observations, the forecasting model used, and its details (such as
call, coefficients, and goodness of fit statistics).
ts <- inzightts(visitorsQ, var = 2:5) p <- predict(ts, "Japan") s <- summary(p, "Japan") s print(s, show_details = TRUE)