Skip to content
Prev 250682 / 398498 Next

Write File to Shared Drive

Stuart -
    In situations like this, I always recommend using file.choose,
so that you can navigate to the appropriate location.  For example,

write.csv(mydata,file=file.choose())

will open a file browser so you can make sure the data will get
written to exactly where you want it.

You can also use a call to file.choose() by itself to see what
path R expects to see for a particular file or directory.

 					- Phil Spector
 					 Statistical Computing Facility
 					 Department of Statistics
 					 UC Berkeley
 					 spector at stat.berkeley.edu
On Tue, 15 Feb 2011, Stuart Jaffe wrote: