This is the scatterplot matrix panel function for Xpose 4. This is not intended to be
ised outside the xpose.plot.splom
function. Most of the
arguments take their default values from xpose.data object but this
can be overridden by supplying them as argument to xpose.plot.splom
.
xpose.panel.splom(x, y, object,
subscripts,
onlyfirst = TRUE,
inclZeroWRES = FALSE,
type = "p",
col = object@Prefs@Graph.prefs$col,
pch = object@Prefs@Graph.prefs$pch,
cex = object@Prefs@Graph.prefs$cex,
lty = object@Prefs@Graph.prefs$lty,
lwd = object@Prefs@Graph.prefs$lwd,
smooth = TRUE,
smlwd = object@Prefs@Graph.prefs$smlwd,
smlty = object@Prefs@Graph.prefs$smlty,
smcol = object@Prefs@Graph.prefs$smcol,
smspan = object@Prefs@Graph.prefs$smspan,
smdegr = object@Prefs@Graph.prefs$smdegr,
lmline = NULL,
lmlwd = object@Prefs@Graph.prefs$lmlwd,
lmlty = object@Prefs@Graph.prefs$lmlty,
lmcol = object@Prefs@Graph.prefs$lmcol,
grid = object@Prefs@Graph.prefs$grid,
groups = NULL,
... )
Name(s) of the x-variable.
Name(s) of the y-variable.
An xpose.data object.
The standard Trellis subscripts argument (see
xyplot
)
Name of the variable used for superpose plots.
Logical value indicating whether rows with WRES=0 is included in the plot.
Logical value indicating whether only the first row per individual is included in teh plot.
1-character string giving the type of plot desired. The following values are possible, for details, see 'plot': '"p"' for points, '"l"' for lines, '"o"' for overplotted points and lines, '"b"', '"c"') for (empty if '"c"') points joined by lines, '"s"' and '"S"' for stair steps and '"h"' for histogram-like vertical lines. Finally, '"n"' does not produce any points or lines.
The color for lines and points. Specified as an integer or
a text string. A full list is obtained by the R command
colours()
. The default is blue (col=4).
The plotting character, or symbol, to use. Specified as an
integer. See R help on points
. The default is an open circle.
The amount by which plotting text and symbols should be scaled relative to the default. 'NULL' and 'NA' are equivalent to '1.0'.
The line type. Line types can either be specified as an integer (0=blank, 1=solid, 2=dashed, 3=dotted, 4=dotdash, 5=longdash, 6=twodash) or as one of the character strings '"blank"', '"solid"', '"dashed"', '"dotted"', '"dotdash"', '"longdash"', or '"twodash"', where '"blank"' uses 'invisible lines' (i.e., doesn't draw them).
the width for lines. Specified as an integer. The default is 1.
logical variable specifying whether a linear regression line should
be superimposed over an xyplot
. NULL
~ FALSE. (y~x
)
Line width of the lmline.
Line type of the lmline.
Line colour of the lmline.
A NULL
value indicates that no superposed line
should be added to the graph. If TRUE
then a smooth of the data will
be superimposed.
Line width of the x-y smooth.
Line type of the x-y smooth.
Line color of the x-y smooth.
The smoothness parameter for the x-y smooth. The default is 0.667. An argument
to panel.loess
.
The degree of the polynomials to be used for the x-y smooth, up to 2. The default
is 1. An argument to panel.loess
.
logical value indicating whether a visual reference grid should be added to the graph. (Could use arguments for line type, color etc).
Other arguments that may be needed in the function.
xpose.plot.splom
,
xpose.data-class
,
xyplot
splom
,
panel.splom
,
panel.pairs