plot.elm {nnfor}R Documentation

Plot ELM network.

Description

Produces a plot of the ELM network architecture.

Usage

## S3 method for class 'elm'
plot(x, r = 1, ...)

Arguments

x

ELM network object, produced using elm.

r

Ensemple member to plot.

...

Unused argument.

Value

None. Function produces a plot.

Note

Neurons are coloured with "lightgrey". Seasonal dummies are coloured with "lightpink" and xreg with "lightblue".

Author(s)

Nikolaos Kourentzes, nikolaos@kourentzes.com

See Also

elm, mlp.

Examples


## Not run: 
 fit <- elm(AirPassengers)
 print(fit)
 plot(fit)
 frc <- forecast(fit,h=36)
 plot(frc)

## End(Not run)


[Package nnfor version 0.9.9 Index]