home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / help / base / NA < prev    next >
Encoding:
Text File  |  1997-04-23  |  622 b   |  25 lines

  1.     
  2.     _N_o_t _A_v_a_i_l_a_b_l_e _V_a_l_u_e
  3.     
  4.          NA
  5.          is.na(x)
  6.          as.na(x)
  7.     
  8.     _D_e_s_c_r_i_p_t_i_o_n:
  9.     
  10.          NA is a logical constant of length 1 which contains a
  11.          missing value indicator.  NA can be freely coerced to
  12.          any other vector type.
  13.     
  14.          as.na ignores its argument and returns the value NA.
  15.     
  16.          is.na takes a vector argument and returns a logical
  17.          vector of the same length containing TRUE for those
  18.          elements marked NA and FALSE otherwise.  dim, dimnames
  19.          and names attributes are preserved.
  20.     
  21.     _S_e_e _A_l_s_o:
  22.     
  23.          complete.cases.
  24.     
  25.