R/print.stpp.R

Defines functions print.stpp

Documented in print.stpp

print.stpp <- function(x, ...)
{
	cat("Space-time point process\n")
	cat("Points:\n")
	cat("x: ")
	print(x$x)
	cat("y: ")
	print(x$y)
	cat("t: ")
	print(x$t)
	cat("Space-time window:\n")
	cat("x-range: ")
	print(x$xcoord)
	cat("y-range: ")
	print(x$ycoord)
	cat("t-range: ")
	print(x$tcoord)
}

Try the stppResid package in your browser

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

stppResid documentation built on May 29, 2017, 3:48 p.m.