diff --git a/rstudio1.md b/rstudio1.md index 542a77260d2cf92769b5efcb9ef4ec5e5c74396f..2362e6bf8d22422d41e4c2f1aec85ab841513d6c 100644 --- a/rstudio1.md +++ b/rstudio1.md @@ -3,7 +3,18 @@ ## Access Web-IDE of RStudio 1. [https://rstudio.idiv.de](https://rstudio.idiv.de) 1. use your iDiv username and password to login -1. please remember to end your session when you have finished your current calculations (red button upper right) +1. please remember to end your session when you have finished your current + calculations + - interactively via the red button in the upper right + - in your longer running scripts use a statement like this after your + computations. You might want to replace `save.image()` with `save()` if + you are only interested in some result data and not the whole + workspace. + ```R + # above some fancy computations + save.image('/data/myproject/myproject.RData') + quit(save = 'no') + ``` 1. if you want to run jobs for weeks or which require many cores (>10) for multiple days, please contact [it-support@idiv.de](mailto:it-support@idiv.de) beforehand. At this point you should consider to move to the HPC cluster. ## ssh access