home *** CD-ROM | disk | FTP | other *** search
-
- _T_h_e _N_u_l_l _O_b_j_e_c_t
-
- NULL
- as.null(x)
- is.null(x)
-
- _D_e_s_c_r_i_p_t_i_o_n:
-
- NULL represents the null object in R. NULL is used
- mainly to represent the lists with zero length, and is
- often returned by expressions and functions whose value
- is undefined.
-
- as.null ignores its argument and returns the value
- NULL.
-
- is.null returns TRUE if its argument is NULL and FALSE
- otherwise.
-
-