	
	_A_d_d _a_n _A_x_i_s _t_o _a _P_l_o_t
	
	     axis(which, at, labels=TRUE, lty="solid",
	             col=par("fg"), cex=1)
	
	_A_r_g_u_m_e_n_t_s:
	
	       which : an integer specifying which side of the plot
	               the axis is to be drawn on.
	
	          at : the points at which tick-marks are to be
	               drawn.
	
	      labels : this can either be a logical value specifying
	               whether (numerical) annotations are to be
	               made at the tickmarks, or a vector of charac-
	               ter strings to be placed at the tickpoints.
	
	         lty : the line texture to be used for the axis.
	
	         col : the color for the axis labels.
	
	         cex : the expansion factor for the axis labels.
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     axis adds an axis to an already existing plot.  The
	     axis is placed as follows: 1=below, 2=left, 3=above and
	     4=right.
	
	_E_x_a_m_p_l_e_s:
	
	     plot(1:4, rnorm(4), axes=FALSE)
	     axis(1, 1:4, c("A", "B", "C", "D"))
	     axis(2)
	
