Learn R Programming

lattice (version 0.2-3)

panel.xyplot: Default Panel Function for xyplot

Description

This is the default panel function for xyplot. Also see panel.superpose. The default panel functions for splom and qqmath are essentially the same function.

Usage

panel.xyplot(x, y, type="p", ...)
panel.splom(x, y, type="p", ...)
panel.qqmath(x, y, type="p", ...)

Arguments

x,y
coordinates of points to be plotted in the scatterplot
type
if type is "p" points are plotted, if "l", the points sre joined by lines, if "b", both are done. The default graphical parameters are obtained from plot.symbol and plot.line using
...
graphical parameters can be supplied

synopsis

panel.xyplot(x, y, type = "p", pch = plot.symbol$pch, col = if (type == "l") plot.line$col else plot.symbol$col, lty = plot.line$lty, ...) panel.splom(...) panel.qqmath(...)

Details

Creates scatterplot of x and y

See Also

panel.superpose, xyplot, splom,qqmath