contour.old(x, y, z, v=<<see below>>, nint=5, add=F, labex=<<see below>>)
The first argument may be a list, xyz, say. Components xyz$x, xyz$y and xyz$z will be used. In particular, the result of interp is suitable as an argument to contour.old.
Graphical parameters may also be supplied as arguments to this function (see par). In addition, the high-level graphics arguments described under par and the arguments to title may be supplied to this function.
rx <- range(ozone.xy$x) ry <- range(ozone.xy$y) usa(xlim=rx, ylim=ry, lty=2, col=2) i <- interp(ozone.xy$x, ozone.xy$y, ozone.median) contour.old(i, add=T, labex=0) text(ozone.xy, ozone.median) title(main="Median Ozone Concentrations in the North East")