Rev 8098 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{dump}\title{Text Representations of R Objects}\usage{dump(list, fileout="dumpdata")}\alias{dump}\description{This function takes a vector of names of \R objects and producestext representations of the objects in the file \code{fileout}.This file, can be \code{\link{source}}d into another \R (or S) session.}\details{At present the implementation of \code{dump} is veryincomplete and it really only works for functions andsimple vectors.The function \code{\link{save}} is designed to be used fortransporting \R data between machines.}\seealso{\code{\link{dput}}, \code{\link{dget}},\code{\link{write}}.}\examples{x <- 1; y <- 1:10dump(ls(patt='^[xyz]'), "xyz.Rdmped")unlink("xyz.Rdmped")}\keyword{file}