Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/findThreshold.R
The functions plotDistances
and plotMutinfo
are used to
visualize the distance threshold calculated by
findThreshold
in the context of pairwise distances among
objects in the reference set.
1 2 3 4 5 | plotDistances(distances, D = NA, interval = NA,
ylab = "distances", ...)
plotMutinfo(breaks, D = NA, interval = NA,
xlab = "distance", ylab = "mutual information", ...)
|
distances |
The |
breaks |
The |
D |
The distance threshold |
interval |
The range of values over which candidiate values of PMMI are evaluated. |
xlab |
Label the x axis of the plot. |
ylab |
Label the y axis of the plot. |
... |
Additional arguments are passed to |
(plotMutinfo
)
plotDistances
produces a box-and-whisker plot contrasting within-
and between-group distances. plotMutinfo
produces a plot of
cutpoints vs mutual information scores.
Returns a lattice grid object.
Noah Hoffman
1 2 3 4 5 6 | data(iris)
dmat <- as.matrix(dist(iris[,1:4], method="euclidean"))
groups <- iris$Species
thresh <- findThreshold(dmat, groups)
do.call(plotDistances, thresh)
do.call(plotMutinfo, thresh)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.