plotDiagnostics: Plot results from diagnostics collected during model fitting

Description Usage Arguments Value Examples

View source: R/plotDiagnostics.R

Description

This function plots various diagnostics collected during the model fitting resulting from a call to owl() provided that diagnostics = TRUE.

Usage

1
2
3
4
5
6
7
plotDiagnostics(
  object,
  ind = max(object$diagnostics$penalty),
  xvar = c("time", "iteration"),
  yvar,
  ...
)

Arguments

object

an object of class "Owl".

ind

either "last"

xvar

what to place on the x axis. iteration plots each iteration, time plots the wall-clock time.

yvar

deprecated (and ignored)

...

other arguments that will be used to modify the call to lattice::xyplot()

Value

An object of class "trellis", which, unless stored in a variable, will be plotted when its default print() method is called.

Examples

1
2
x <- owl(abalone$x, abalone$y, sigma = 2, diagnostics = TRUE)
plotDiagnostics(x)

jolars/golem documentation built on March 5, 2020, 12:42 p.m.