	
	_A_d_d _C_o_n_n_e_c_t_e_d _L_i_n_e _S_e_g_m_e_n_t_s _t_o _a _P_l_o_t
	
	     lines(x, y, ...)
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     lines takes the coordinates given in the x and y vec-
	     tors and joins those points with line segments.  The
	     coordinates can alternatively be passed to lines in a
	     plotting structure (a list with x and y components), a
	     time series, etc.
	
	     Graphical parameters can also be specified as argu-
	     ments.
	
	_E_x_a_m_p_l_e_s:
	
	     # draw a smooth line through a scatter plot
	     plot(cars, main="Stopping Distance versus Speed")
	     lines(lowess(cars))
	
