R/print.abund.R

"print.abund" <-
function(x, ...) {
	cat("\nSorting of descriptors according to abundance for:", x$data, "\n\n")
	cat("Coefficient f:", x$f, "\n")
	if (!is.null(x$n)) {						# How many variables do we keep?
		cat("Extraction of: ", x$n, " variable(s) from a total of ", length(x$vr), "\n", sep="")
	} else {
		cat(length(x$vr), " variables sorted\n", sep="")
	}
	cat("\n")
	invisible(x)
}

Try the pastecs package in your browser

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

pastecs documentation built on May 2, 2019, 3:36 p.m.