	
	_D_i_s_p_l_a_y _a _c_o_l_o_r _i_m_a_g_e
	
	     image(z, x, y, zlim, col=heat.colors(12), ...)
	
	     heat.colors(n)
	     topo.colors(n)
	     terrain.colors(n)
	
	_A_r_g_u_m_e_n_t_s:
	
	           z : a matrix containing the values to be plotted
	               (NAs are allowed).
	
	         x,y : locations of grid lines at which the values
	               in z are measured.  These must be in ascend-
	               ing order.  By default, equally spaced values
	               from 0 to 1 are used.
	
	        zlim : the minimum and maximum z values for which
	               colors will be plotted.  Each of the given
	               colors will be used to color an equispaced
	               interval of this range
	
	         col : A list of colors such as that generated by
	               rainbow, heat.colors, topo.colors,
	               terrain.colors or similar functions.
	
	         ... : graphical parameters may also be passed as
	               arguments to this function.
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     Creates a grid of colored or gray-scale rectangles with
	     colors corresponding to the values in z.  This can be
	     used to display three-dimensional or spatial data.  The
	     functions heat.colors, terrain.colors and topo.colors
	     create heat-spectrum (red to white) and topographical
	     color schemes suitable for displaying ordered data,
	     with n giving the number of colors desired.
	
	_N_o_t_e:
	
	     This function is based on an interpreted function writ-
	     ten by Thomas Lumley (thomas@biostat.washington.edu).
	
	_S_e_e _A_l_s_o:
	
	     heat.colors, topo.colors, terrain.colors, rainbow, hsv,
	     par.
	
	_E_x_a_m_p_l_e_s:
	
	     data(volcano)
	     x <- 10*(1:nrow(volcano))
	     y <- 10*(1:ncol(volcano))
	     image(volcano, x, y,
	             col=terrain.colors(100),axes=FALSE)
	     contour(volcano, x, y, zc=seq(90, 200, by=5),
	             add=TRUE, col="peru")
	     axis(1, at=seq(100, 800, by=100))
	     axis(2, at=seq(100, 600, by=100))
	     box()
	     title(main="Maunga Whau Volcano", font.main=4)
	
