home *** CD-ROM | disk | FTP | other *** search
-
- _V_e_c_t_o_r _T_y_p_e_s
-
- vector(type="logical", length=0)
- as.vector(x,mode="any")
- is.vector(x)
-
- _D_e_s_c_r_i_p_t_i_o_n:
-
- vector produces a vector of the given length and type.
- Logical vector elements are initialized to FALSE,
- numeric vector elements to 0 and character vector ele-
- ments to "".
-
- as.vector attempts to coerce its argument into a vector
- of mode mode (the default is to coerce to whichever
- mode is most convenient). The attributes of x are
- removed.
-
- is.vector returns TRUE if x is a vector (of mode logi-
- cal, factor, integer, real or character) and FALSE oth-
- erwise.
-
-