Site icon R-bloggers

Working with directories

[This article was first published on R Tips's blog, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Something quite annoying to me is when I get an R script and I have to change all of the file references in the script. I get something like this this:
source("C:\\Documents and Settings\\UserName\\Data\\...\\File1.R") data<-read.table("C:\\Documents and Settings\\UserName\\Data\\...\\SomeData.dat")
Besides these being unsightly, file references are also a pain to change. Usually I just delete all but the filename. How can I get away with that? because R remembers what directory you are dealing with and makes all file references relative. so the above becomes:

read more

To leave a comment for the author, please follow the link and comment on their blog: R Tips's blog.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.