File: print.isomap.R

package info (click to toggle)
r-cran-vegan 2.5-7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,564 kB
  • sloc: ansic: 2,275; fortran: 1,088; sh: 42; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 358 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
`print.isomap` <-
function (x, ...) 
{
	cat("\nIsometric Feature Mapping (isomap)\n\n")
	cat("Call:\n")
	cat(deparse(x$call), "\n\n")
	cat("Distance method:", x$method, "\n")
	cat("Criterion:", x$criterion, "=", x$critval, "\n")
	if(!is.null(x$take))
	    cat("Data were fragmented, analysed", sum(x$take), "of", length(x$take), "points\n")
	invisible(x)
}