Usage
xyplot.eda8(xx, yy, zz, sfact = 1, xlim = NULL, ylim = NULL,
xlab = deparse(substitute(xx)), ylab = deparse(substitute(yy)),
zlab = deparse(substitute(zz)), main = "", log = NULL,
ifgrey = FALSE, symcolr = NULL, iflgnd = FALSE, pctile = FALSE,
title = deparse(substitute(zz)), ...)
Arguments
xx
name of the x-axis variable.
yy
name of the y-axis variable.
zz
name of the third variable to be plotted.
sfact
controls the absolute size of the plotted symbols, by default sfact = 1
. Increasing sfact
results in larger symbols.
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
zlab
by default, zlab = deparse(substitute(zz))
, a plot title is generated by appending the input variable name text string to Proportional Symbol Plot for
. Alternative titles may be generated, see Details below.
main
an alternative plot title, see Details below.
ifgrey
set ifgrey = TRUE
if a grey-scale plot is required, see Details below.
symcolr
the default is a colour plot and default colours are provided, deeper blues for lower values, green for the middle 50% of the data, and oranges and reds for higher values. A set of alternate symbol colours can be provided by defining symcolr
iflgnd
the default is no legend. If a legend is required set iflegnd = TRUE
, following the plotting of the data the cursor will be activated, locate that at the top left corner of the desired legend position and left button on the
pctile
the default legend displays the range of values each symbol represents. If pctile = TRUE
the range of percentiles will be displayed instead of their actual values.
title
a short title for the legend, e.g., title = "Zn (mg/kg"
. The default is the variable name.
...
further arguments to be passed to methods. For example, if it is required to make the plot title smaller, add cex.main = 0.9
to reduce the font size by 10%.