	
	_N_o_t _A_v_a_i_l_a_b_l_e _V_a_l_u_e
	
	     NA
	     is.na(x)
	     as.na(x)
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     NA is a logical constant of length 1 which contains a
	     missing value indicator.  NA can be freely coerced to
	     any other vector type.
	
	     as.na ignores its argument and returns the value NA.
	
	     is.na takes a vector argument and returns a logical
	     vector of the same length containing TRUE for those
	     elements marked NA and FALSE otherwise.  dim, dimnames
	     and names attributes are preserved.
	
	_S_e_e _A_l_s_o:
	
	     complete.cases.
	
