print.frbe | R Documentation |
frbe()
classFormat an object of the frbe()
class into human readable form
and print it to the output.
## S3 method for class 'frbe'
print(x, ...)
x |
An instance of |
... |
Unused. |
Format an object of the frbe()
class into human readable form
and print it to the output.
None.
Michal Burda
Š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.
frbe()
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.