Nothing
`plot.isomap` <-
function (x, net = TRUE, n.col = "gray", type = "points", ...)
{
type <- match.arg(type, c("points", "text", "none"))
if (!net) {
pl <- ordiplot(x, display="sites", type = type, ...)
} else {
pl <- ordiplot(x, display = "sites", type = "none", ...)
z <- scores(pl, "sites")
k <- x$net
segments(z[k[,1],1], z[k[,1],2], z[k[,2],1], z[k[,2],2], col=n.col)
if (type == "points")
points(pl, "sites", ...)
else if (type == "text")
ordilabel(pl, ...)
}
invisible(pl)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.