dput(x, file = "") dget(file)
dput
opens file
and deparses the object x
into
that file. The object name is not written (contrary to dump
).
If x
is a function the associated environment is stripped.
Hence scoping information can be lost.
Using dget
, the object can be recreated (with the limitations
mentioned above).
deparse
, dump
, write
.## Write an ASCII version of mean to the file "foo" dput(mean, "foo") ## And read it back into `bar' bar <- dget("foo")