R/plot.thinresid.R

Defines functions plot.thinresid

Documented in plot.thinresid

plot.thinresid <- function(x, ..., pch = 1, asp = 1)
{
	if(!is.thinresid(x))
		stop("x must be an object of type thinresid")
	plot(x[[3]]$x, x[[3]]$y, xlim = x[[1]]$xcoord, ylim = x[[1]]$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.