plres2x {regr0} | R Documentation |
Plot 2 variables, showing a third one with line symbols. Most suitable for showing residuals of a model as this third variable.
plres2x(formula = NULL, reg = NULL, data = reg, restricted = NULL, size = 0, slwd = 1, scol = 2, xlab = NULL, ylab = NULL, xlim = NULL, ylim = NULL, main = NULL, cex.title = NULL, ...)
formula |
a formula of the form |
reg |
the result of the model fit |
data |
the data.frame where the variables are found |
restricted |
absolute value which truncates the size. Truncation is shown by stars at the end of the line symbols. |
size |
the symbols are scaled so that |
slwd |
line width of the line symbols |
scol |
color of the symbols |
xlab, ylab |
labels for horizontal and vertical axes. Default to the variable names |
xlim, ylim |
plot ranges for horizontal and vertical axes. They are expanded to accomodate the symbols |
main |
main title of plot.
Defaults to |
cex.title |
character expansion for the main title |
... |
further arguments, passed to |
none.
Werner A. Stahel and Andreas Ruckstuhl
data(d.blast) t.r <- regr(log10(tremor)~location+log10(distance)+log10(charge), data=d.blast) plres2x(~distance+charge, t.r)