	
	_C_l_e_v_e_l_a_n_d _D_o_t_c_h_a_r_t_s
	
	     dotchart(x, labels=NULL, groups=NULL, gdata=NULL,
	             color, gcolor, pch=11, gpch=11, cex, ...)
	
	_A_r_g_u_m_e_n_t_s:
	
	           x : either a vector or matrix of numeric values
	               (NAs are allowed).  If x is a matrix the
	               overall plot consists of juxtaposed dotcharts
	               for each row.
	
	      labels : a vector of labels for each point.  For vec-
	               tors the default is to use names(x) and for
	               matrices the row labels dimnames(x)[[1]].
	
	       gdata : data values for the groups.  This is typi-
	               cally a summary such as the median or mean of
	               each group.
	
	       color : the color to be used for points an labels.
	
	      gcolor : the color to be used for group labels and
	               values.
	
	         pch : the plotting character or symbol to be used.
	
	        gpch : the plotting character or symbol to be usea
	               for group values.
	
	         cex : the character size to be used.  Setting cex
	               to value smaller than one can be a useful way
	               of avoiding label overlap.
	
	         ... : graphical parameters can also be specified as
	               arguments.
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     dotchart produces two variants of dotcharts as
	     described in Cleveland's graphics book.
	
	     Dotcharts are a reasonable substitute for barcharts.
	
	_R_e_f_e_r_e_n_c_e_s:
	
	     Cleveland, W. S. (1985).  The Elements of Graphing
	     Data, Monterey, CA: Wadsworth.
	
	_E_x_a_m_p_l_e_s:
	
	     data(deaths)
	     dotchart(deaths, main="Death Rates in VA - 1940")
	     dotchart(t(deaths), main="Death Rates in VA - 1940")
	
