Usage
xyplot.tags(xx, yy, tag, log = NULL, xlim = NULL, ylim = NULL,
xlab = deparse(substitute(xx)), ylab = deparse(substitute(yy)),
taglab = deparse(substitute(tag)), main = "", ...)
Arguments
xx
name of the x-axis variable.
yy
name of the y-axis variable.
tag
name of the third variable to be displayed.
log
if it is required to display the data with logarithmic axis scaling, set log = "x"
for a logarithmically scaled x-axis, log = "y"
for a logarithmically scaled y-axis, and log = "xy"
for both axes logarithmically scal
xlim
user defined limits for the x-axis, see Details below.
ylim
user defined limits for the y-axis, see Details below.
xlab
the x-axis title, by default the variable name, deparse(substitute(xx))
. It is often desirable to replace the default x-axis title of the input variable name text string with a more informative title, e.g., xlab = "Fe (mg/kg) in stream
ylab
the y-axis title, by default the variable name, deparse(substitute(yy))
. It is often desirable to replace the default y-axis title of the input variable name text string with a more informative title, e.g., ylab = "Mn (mg/kg) in stream
taglab
text to be inserted in the plot title, by default deparse{substitute{tag}}
is used. See Details below.
main
an alternative plot title, see Details below.
...
further arguments to be passed to methods. For example, if smaller plotting characters are required, specify cex = 0.8
; or if some colour other than black is required for the plotting characters, specify col = 2
to obtain red (s