-
Notifications
You must be signed in to change notification settings - Fork 1
/
04-orientation.Rmd
77 lines (32 loc) · 1.7 KB
/
04-orientation.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Workspace Orientation
![](images/orient.png)
Get a feel for the lay of the land.
Before starting to use `RStudio`, let's run the following code in the console (just copy and paste it): `usethis::use_blank_slate()`. This makes it so whenever you close and then reopen `RStudio` you start with a blank environment. Don't worry, all your code is still saved in your `.rmd` or `.r` file!
```{block type='rmdconstruct', echo=FALSE}
**ADD SECTION:** This chapter has not been started yet.
```
-----------------------
## Default Window Arrangement
![](images/panel_arrange_default.PNG){width=600px}
-----------------------
## Cheatsheets
![](images/menu_cheatsheets.PNG){width=600px}
![](images/cheatsheet_rstudio_zoom.PNG){width=600px}
-----------------------
## Global Options Menu
![](images/menu_global_options.PNG){width=600px}
### Pane Layout
![](images/window_global_options_arrange.PNG){width=400px}
### Appearance
![](images/window_global_options_apperance.PNG){width=400px}
![](images/panel_arrange_sarah.PNG){width=600px}
-----------------------
## Various Tabs
### Files
The files tab will by default show your working directory (the folder that is "home base" for your R session).
### Packages
These show all the packages you currently have installed. Many come standard with `R` but others listed could have been installed by you.
### Help
We will use this tab a lot to look up how to use functions that maybe we are less familiar with.
### Environment
This shows the "objects" (usually data) that `R` knows is available for you to currently use. If nothing is in there, then you'll need to import data or other stuff you want to work with. This will be discussed much more later on.