plot.lineupdist {lineup} | R Documentation |
Plot summary of inter-individual distances
Description
Plot histograms of self-self and self-nonself distances from a distance
matrix calculated by distee()
or disteg()
.
Usage
## S3 method for class 'lineupdist'
plot(x, breaks = NULL, add.rug = TRUE, what = c("both", "ss", "sn"), ...)
Arguments
x |
|
breaks |
Optional vector of breaks, passed to
|
add.rug |
If true, also include |
what |
Indicates whether to plot both self-self and self-nonself
distances (or correlations) or just one or the other. ( |
... |
Ignored at this point. |
Details
We call pulldiag()
and omitdiag()
to get the
self-self and self-nonself distances.
If all of the self-self distances are missing, we plot just the self-nonself distances.
Value
None.
Author(s)
Karl W Broman, broman@wisc.edu
See Also
pulldiag()
, distee()
,
plot2dist()
Examples
data(expr1, expr2)
# distance as correlation
d <- distee(expr1, expr2, "cor")
# plot histograms of self-self and self-nonself correlations
plot(d)