https://github.com/cran/tgp
Raw File
Tip revision: 534c8cd58617573a0a16e249456e482cc7721be9 authored by Robert B. Gramacy on 27 May 2006, 00:00:00 UTC
version 1.1-5
Tip revision: 534c8cd
print.tgp.R
print.tgp <- function(x, ...)
{
	cat("This is a 'tgp' class object\n")
	cat("It is basically a list with the following entries:\n\n")
	print(names(x), quote=FALSE)

	cat("\nSee tgp or btgp for an explanation of the individual entries\n")
	cat("See plot.tgp and tgp.trees for help with visualization\n")
}
back to top