plot.DArch: Plot 'DArch' statistics or structure.

Description Usage Arguments Details Value See Also Examples

View source: R/plot.R

Description

This function provides different plots depending on the type parameter:

Usage

1
2
## S3 method for class 'DArch'
plot(x, y = "raw", ..., type = y)

Arguments

x

DArch instance.

y

See type.

...

Additional parameters, passed to plotting functions.

type

Which type of plot to create, one of raw, class, time, momentum, and net.

Details

Value

The plotted graph.

See Also

Other darch interface functions: darchBench, darchTest, darch, predict.DArch, print.DArch

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
data(iris)
model <- darch(Species ~ ., iris)
plot(model)
plot(model, "class")
plot(model, "time")
plot(model, "momentum")
plot(model, "net")

## End(Not run)

darch documentation built on May 29, 2017, 8:14 p.m.

Related to plot.DArch in darch...