R/Vegsoup-VisualisationMethods.R

plotPCO <- function (x, display = "sites", ...) {
	ord <- capscale(as.matrix(x) ~ 1, data = sites(x))	
	fig <- ordiplot(ord, display = display, type = "n") # , ...
	ol <- outlier(x, ...)
	points(fig, select = !ol, col = 1)
	points(fig, select = ol, col = 2, pch = "+")
	#orditorp(fig, select = ol, col = 2)	
}

Try the vegsoup package in your browser

Any scripts or data that you put into this service are public.

vegsoup documentation built on Feb. 24, 2021, 3 a.m.