R/plot.supresid.R

Defines functions plot.supresid

Documented in plot.supresid

plot.supresid <- function(x, ..., pch1 = 1, pch2 = 3, asp = 1)
{
	if(!is.supresid(x))
		stop("x must be an object of type supresid")
	plot(x[[1]]$x, x[[1]]$y, xlim = x[[1]]$xcoord, ylim = x[[1]]$ycoord, pch = pch1, asp = asp, xlab = "x", ylab = "y", ...)
	points(x[[4]]$x, x[[4]]$y, pch = pch2)
}

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.