

   SSaavvee OObbjjeeccttss

        save(..., list = character(0), file = "", ascii = FALSE)

   AArrgguummeennttss::

        ...: the names of the objects to be saved.

       list: A character vector containing the names of objects
             to be saved.

       file: the name of the file where the data will be saved.

      ascii: if `TRUE', an ASCII representation of the data is
             written.  This is useful for transporting data
             between machines of different types.  The default
             value of `ascii' is `FALSE' which leads to a more
             compact binary file being written.

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

        `save' writes a external representation of objects to
        the specified file.  The objects can be read back from
        the file at a later date by using the function `load'.

   SSeeee AAllssoo::

        `dput', `dump', `load'.

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

        save(x, y, file = "xy.Rdata")
        save(list = ls(), file = "all.Rdata")

