Skip to content
Snippets Groups Projects
Commit 850190d9 authored by Dirk Sarpe's avatar Dirk Sarpe
Browse files

extend ending R session

maybe some ide people do not know quit()
parent 715bbd5e
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment