This function defines a plot method for correspondence objects.
# S3 method for corres
plot(x, main = "", addcol = TRUE, extreme = 0, rcex = 1, rcol = 1,
rlabels = "", stretch = 1.4, ccex = 1, ccol = 2, clabels = "", ...)
A plot on the graphics device.
A correspondence object as produced by corres
.
A string used for the main title of the plot.
A logical, if true, columns are added to the plot.
If nonzero, defines quantiles that define the extremes such that only data points exceeding these extremes are plotted.
sets cex graphical parameter for rows.
sets color for rows.
vector of row labels.
a number defining the degree to which the columns (or rows) should be stretched out for visual presentation.
sets cex graphical parameter for columns.
sets color for columns.
vector of column labels.
other parameters to be passed through to plotting functions.
R. H. Baayen
See Also corres.fnc
, link{corsup.fnc}
.
if (FALSE) {
data(oldFrench)
data(oldFrenchMeta)
oldFrench.ca = corres.fnc(oldFrench)
plot(oldFrench.ca)
plot(oldFrench.ca, rlabels = oldFrenchMeta$Genre,
rcol = as.numeric(oldFrenchMeta$Genre), rcex = 0.5,
extreme = 0.1, ccol = "blue")
}
Run the code above in your browser using DataLab