R/plot.stpp.R

Defines functions plot.stpp

Documented in plot.stpp

plot.stpp <- function(x, ..., pch = 1, asp = 1)
{
	if(!is.stpp(x))
		stop("x must be an object of type stpp")
	plot(x$x, x$y, xlim = x$xcoord, ylim = x$ycoord, pch = pch, asp = asp, xlab = "x", ylab = "y", ...)
}

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.