R/Class-Vegsoup.R

#	private class not exposed to the user
#	used to allow slot 'decostand' to contain NULL 
setClassUnion("decostand.method", c("character", "NULL"))

setClass("decostand", representation(method = "decostand.method"))

#	class definition
setClass("Vegsoup",
	representation(
	species = "Species",
	sites = "data.frame",
	taxonomy = "Taxonomy",
	coverscale = "Coverscale",
	decostand = "decostand",
	dist = "character",
	layers = "character",
	group = "integer",
	sp.points = "SpatialPointsDataFrame",
	sp.polygons = "SpatialPolygonsDataFrame")
)

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.