R/plot.superthin.R

Defines functions plot.superthin

Documented in plot.superthin

plot.superthin <- function(x, ..., pch1 = 1, pch2 = 3, asp = 1)
{
	if(!is.superthin(x))
		stop("x must be an object of type superthin")
	plot(x[[5]]$x, x[[5]]$y, xlim = x[[1]]$xcoord, ylim = x[[1]]$ycoord, pch = pch1, asp = asp, xlab = "x", ylab = "y", ...)
	points(x[[6]]$x, x[[6]]$y, pch = pch1)
	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.