	
	_G_r_a_p_h_i_c_a_l _U_n_i_t_s
	
	     xinch(x=1)
	     yinch(x=1)
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     xinch and yinch convert the specified number of inches
	     given as their arguments into the correct units for
	     plotting with graphics functions.
	
	_E_x_a_m_p_l_e_s:
	
	     # plot labels offset 0.2 inches to the right
	     # of plotted symbols in a plot
	     plot(x, y)
	     text(x+xinch(0.2), y, labs, adj=0)
	
