summary.inz_frct {iNZightTS} | R Documentation |
Summarise iNZightTS forecasts
Description
Summary method for objects of class inz_frct
.
Usage
## S3 method for class 'inz_frct'
summary(object, var = NULL, ...)
## S3 method for class 'summary_inz_frct'
print(x, show_details = FALSE, ...)
Arguments
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. |
Value
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).
See Also
Examples
ts <- inzightts(visitorsQ, var = 2:5)
p <- predict(ts, "Japan")
s <- summary(p, "Japan")
s
print(s, show_details = TRUE)
[Package iNZightTS version 2.0.0 Index]