print.frbe: Print an instance of the 'frbe()' class

View source: R/print.frbe.R

print.frbeR Documentation

Print an instance of the frbe() class

Description

Format an object of the frbe() class into human readable form and print it to the output.

Usage

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

Arguments

x

An instance of frbe() class

...

Unused.

Details

Format an object of the frbe() class into human readable form and print it to the output.

Value

None.

Author(s)

Michal Burda

References

Štěpnička, M., Burda, M., Štěpničková, L. Fuzzy Rule Base Ensemble Generated from Data by Linguistic Associations Mining. FUZZY SET SYST. 2015.

See Also

frbe()

Examples


  # prepare data (from the forecast package)
  library(forecast)
  horizon <- 10
  train <- wineind[-1 * (length(wineind)-horizon+1):length(wineind)]
  test <- wineind[(length(wineind)-horizon+1):length(wineind)]
  f <- frbe(ts(train, frequency=frequency(wineind)), h=horizon)
  print(f)
  print(test)


beerda/lfl documentation built on Feb. 15, 2023, 8:15 a.m.