	
	_C_h_a_r_a_c_t_e_r _S_t_r_i_n_g _V_e_c_t_o_r_s
	
	     character(n=0)
	     as.character(x)
	     is.character(x)
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     character creates a character vector of the specified
	     length.  The elements of the vector are all equal to
	     "".
	
	     as.character attempts to coerce its argument to be of
	     character type.
	
	     is.character returns TRUE or FALSE depending on whether
	     its argument is of character type or not.
	
