print.fforecast: Custom Print Method for FSSA Forecast (fforecast) class

View source: R/fforecast.R

print.fforecastR Documentation

Custom Print Method for FSSA Forecast (fforecast) class

Description

This custom print method is designed for objects of the FSSA Forecast (fforecast) class. It provides a summary of the fforecast object.

Usage

## S3 method for class 'fforecast'
print(x, ...)

Arguments

x

an object of class "fforecast" to be printed.

...

further arguments passed to or from other methods.

Examples

## Not run: 
# Example with one-dimensional domain
data("Callcenter")
# FSSA Decomposition step:
fssa_results <- fssa(Callcenter, L = 28)

# Perform FSSA R-forecasting
pr_R <- fforecast(U = fssa_results,
                  groups = c(1:3),
                  len = 14,
                  method = "recurrent")
print(pr_R)

## End(Not run)

Rfssa documentation built on Oct. 27, 2023, 1:08 a.m.