generated from jhudsl/AnVIL_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
06-wrapup.Rmd
31 lines (24 loc) · 1.44 KB
/
06-wrapup.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Wrap-up on AnVIL
Cloud computing costs are based on the amount of time you use the computing resources, so it's important to clean up after yourself when you're done, and not just leave the computers running.
There are two ways to "shut down" RStudio on AnVIL:
- **Pause** the environment: This will save a copy of your work, and then release the computers for other people to use them. **Do this if you plan to continue working in RStudio**.
- It's similar to turning off your computer or phone - when you start it back up, everything will be where you left it.
- This still costs a small amount of money, but much less than leaving the computer running.
- **Delete** the environment: This will delete everything and then release the computers for other people to use them. **Do this if you are completely finished working in RStudio**, or if your future work will be in a new environment.
- It's similar to throwing your computer or phone in the trash!
- **You will not be able to recover your work.**
- Make sure you have saved anything you need before you delete your environment.
## Pause RStudio environment
```{r, echo = FALSE, results='asis'}
cow::borrow_chapter(
doc_path = "child/_child_rstudio_pause.Rmd",
repo_name = "jhudsl/AnVIL_Template"
)
```
## Delete RStudio environment
```{r, echo = FALSE, results='asis'}
cow::borrow_chapter(
doc_path = "child/_child_rstudio_delete.Rmd",
repo_name = "jhudsl/AnVIL_Template"
)
```