Learn R Programming

nnfor (version 0.9.9)

plot.elm: Plot ELM network.

Description

Produces a plot of the ELM network architecture.

Usage

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

Value

None. Function produces a plot.

Arguments

x

ELM network object, produced using elm.

r

Ensemple member to plot.

...

Unused argument.

Author

Nikolaos Kourentzes, nikolaos@kourentzes.com

See Also

elm, mlp.

Examples

Run this code
# \dontshow{
 fit <- elm(AirPassengers,reps=1)
 plot(fit)
# }
if (FALSE) {
 fit <- elm(AirPassengers)
 print(fit)
 plot(fit)
 frc <- forecast(fit,h=36)
 plot(frc)
}

Run the code above in your browser using DataLab