

   NNuummeerriicc VVeeccttoorrss

        numeric(n = 0)
        as.numeric(x)
        is.numeric(x)

   DDeessccrriippttiioonn::

        `numeric' creates a real vector of length `n'.  The
        vector is filled with zeros.

        `as.numeric' attempts to coerce its argument to numeric
        type (either integer or real).

        `is.numeric' returns `TRUE' if its argument is of type
        real or type integer and `FALSE' otherwise.

   NNoottee::

        has no single precision data type.  All real numbers
        are stored in double precision format.

        `as.numeric' for factors yields the codes underlying
        the factor levels.

   EExxaammpplleess::

        as.numeric(c("2","B"))
        as.numeric(factor(5:10))

