On Thu, 2 Feb 2006, Thomas L Jones wrote:
> (newbie question) How do I save the workspace in Windows text format
> (with the file extension .txt)? Also, having saved it and edited it,
> how do I load it back into the workspace?
`save' is a command in R, and it has a ascii argument. So you could do
save.image("workspace.txt", ascii=TRUE) to save, and load("workspace.txt")
to reload.
The underlying assumption seems to be that text format files are editable
(by a human). Lots of data formats are text files but have many rigid
restrictions: PDF is one example and R save formats are others.
--
Brian D. Ripley, [EMAIL PROTECTED]
Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/
University of Oxford, Tel: +44 1865 272861 (self)
1 South Parks Road, +44 1865 272866 (PA)
Oxford OX1 3TG, UK Fax: +44 1865 272595
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html