Skip to content
Prev 41614 / 398500 Next

Contour plots

I think you need to use the zlim argument in image().

For example
image(x,y,z,zlim=c(0,100))
will make sure that all the plots are drawn using the same values for z 
(between 0 and 100 here).

Bill