"plot"(x, ..., main, add=FALSE, show.all=!add, col=NULL, do.plot=TRUE, do.labels=FALSE, labels=tilenames(x), labelargs=list())
"tess"
) to be plotted.x
.
text.default
to control display of the text labels.
"owin"
specifying a bounding box
for the plot (including a colour ribbon if plotted).
plot
function
for the class "tess"
of tessellations (see tess
). The arguments ...
control the appearance of the plot.
They are passed to segments
,
plot.owin
or plot.im
, depending on the
type of tessellation.
tess
A <- tess(xgrid=0:4,ygrid=0:4)
plot(A, col="blue", lwd=2, lty=2)
B <- A[c(1, 2, 5, 7, 9)]
plot(B, hatch=TRUE)
v <- as.im(function(x,y){factor(round(5 * (x^2 + y^2)))}, W=owin())
levels(v) <- letters[seq(length(levels(v)))]
E <- tess(image=v)
plot(E)
Run the code above in your browser using DataLab