I've heard it said that it is bad practice to use setwd() in a script.
- What are the risks/dangers associated with it?
- What are better alternatives?
|
|
It's an issue of reproducible code. If you specify a directory that doesn't exist on someone else's computer, then they can't use your code. This is particularly bad with absolute file paths, and particularly bad with Windows file paths (which are absolutely impossible to replicate on a Unix system). My preferred solution is to specify that the user should be in the relevant directory on their own system before starting to run the code. If for your own convenience you want to put a Yihui Xie (author of https://groups.google.com/forum/?fromgroups=#!topic/knitr/knM0VWoexT0
And from the aforementioned FAQ 7:
See also: https://github.com/yihui/knitr/issues/38 |
|||||||||
|
|
I can't think of any particular issues with using I use
|
|||||
|
|
To make things a bit more portable where I work we all put this in a Rprofile
So i always have that variable to get me to our shared drive. Then in my script we can write
So that gets us around some of the problems that others are talking about. |
|||||||||
|