"isomap"
autoplot.isomap.Rd
Produces a multi-layer ggplot object representing the output of objects produced by isomap
.
an object of class "isomap"
, the result of a call to isomap
.
numeric; which axes to plot, given as a vector of length 2.
character; which geom to use for the MDS scores layer.
logical; should the edges of the ISOMAP network be drawn?
colour with which to draw the network edges.
numeric; size aesthetic for the log-series curve.
character; label for the x-axis.
character; label for the y-axis.
character; subtitle for the plot.
character; subtitle for the plot.
character; caption for the plot.
additional arguments passed to other methods.
A ggplot object.
data(BCI)
dis <- vegdist(BCI)
ord <- isomap(dis, k = 3)
autoplot(ord)
autoplot(ord, geom = "text")