-
Notifications
You must be signed in to change notification settings - Fork 0
/
intro_to_r_Coursera.Rmd.txt
508 lines (394 loc) · 20.6 KB
/
intro_to_r_Coursera.Rmd.txt
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
---
title: "Introduction to R and RStudio"
output: statsr:::statswithr_lab
---
<div id="instructions">
Complete all **Exercises**, and submit answers to **Questions** on the Coursera
platform.
</div>
The goal of this lab is to introduce you to R and RStudio, which you'll be using
throughout the course both to learn the statistical concepts discussed in the
course and to analyze real data and come to informed conclusions. To straighten
out which is which: R is the name of the programming language itself and RStudio
is a convenient interface.
As the labs progress, you are encouraged to explore beyond what the labs dictate;
a willingness to experiment will make you a much better programmer. Before we
get to that stage, however, you need to build some basic fluency in R. Today we
begin with the fundamental building blocks of R and RStudio: the interface,
reading in data, and basic commands.
## RStudio
Your RStudio window has four panels.
Your R Markdown file (this document) is in the upper left panel.
The panel on the lower left is where the action happens. It's called the *console*.
Everytime you launch RStudio, it will have the same text at the top of the
console telling you the version of R that you're running. Below that information
is the *prompt*. As its name suggests, this prompt is really a request, a
request for a command. Initially, interacting with R is all about typing commands
and interpreting the output. These commands and their syntax have evolved over
decades (literally) and now provide what many users feel is a fairly natural way
to access data and organize, describe, and invoke statistical computations.
The panel in the upper right contains your *workspace* as well as a history of
the commands that you've previously entered.
Any plots that you generate will show up in the panel in the lower right corner.
This is also where you can browse your files, access help, manage packages, etc.
## R Packages
R is an open-source programming language, meaning that users can contribute
packages that make our lives easier, and we can use them for free. For this lab,
and many others in the future, we will use the following R packages:
- `statsr`: for data files and functions used in this course
- `dplyr`: for data wrangling
- `ggplot2`: for data visualization
You should have already installed these packages using commands like
`install.packages` and `install_github`.
Next, you need to load the packages in your working environment. We do this with
the `library` function. Note that you only need to **install** packages once, but
you need to **load** them each time you relaunch RStudio.
```{r load-packages, message = FALSE}
library(dplyr)
library(ggplot2)
library(statsr)
```
To do so, you can
- click on the green arrow at the top of the code chunk in the R Markdown (Rmd)
file, or
- highlight these lines, and hit the **Run** button on the upper right corner of the
pane, or
- type the code in the console.
Going forward you will be asked to load any relevant packages at the beginning
of each lab.
## Dataset 1: Dr. Arbuthnot's Baptism Records
To get you started, run the following command to load the data.
```{r load-abrbuthnot-data}
data(arbuthnot)
```
To do so, once again, you can
- click on the green arrow at the top of the code chunk in the R Markdown (Rmd)
file, or
- put your cursor on this line, and hit the **Run** button on the upper right
corner of the pane, or
- type the code in the console.
This command instructs R to load some data. The Arbuthnot baptism counts for boys
and girls. You should see that the workspace area in the upper righthand corner of
the RStudio window now lists a data set called `arbuthnot` that has 82 observations
on 3 variables. As you interact with R, you will create a series of objects.
Sometimes you load them as we have done here, and sometimes you create them yourself
as the byproduct of a computation or some analysis you have performed.
The Arbuthnot data set refers to Dr. John Arbuthnot, an 18<sup>th</sup> century
physician, writer, and mathematician. He was interested in the ratio of newborn
boys to newborn girls, so he gathered the baptism records for children born in
London for every year from 1629 to 1710. We can take a look at the data by
typing its name into the console.
```{r view-data}
arbuthnot
```
However printing the whole dataset in the console is not that useful.
One advantage of RStudio is that it comes with a built-in data viewer. Click on
the name `arbuthnot` in the *Environment* pane (upper right window) that lists
the objects in your workspace. This will bring up an alternative display of the
data set in the *Data Viewer* (upper left window). You can close the data viewer
by clicking on the *x* in the upper lefthand corner.
What you should see are four columns of numbers, each row representing a
different year: the first entry in each row is simply the row number (an index
we can use to access the data from individual years if we want), the second is
the year, and the third and fourth are the numbers of boys and girls baptized
that year, respectively. Use the scrollbar on the right side of the console
window to examine the complete data set.
Note that the row numbers in the first column are not part of Arbuthnot's data.
R adds them as part of its printout to help you make visual comparisons. You can
think of them as the index that you see on the left side of a spreadsheet. In
fact, the comparison to a spreadsheet will generally be helpful. R has stored
Arbuthnot's data in a kind of spreadsheet or table called a *data frame*.
You can see the dimensions of this data frame by typing:
```{r dim-data}
dim(arbuthnot)
```
This command should output `[1] 82 3`, indicating that there are 82 rows and 3
columns (we'll get to what the `[1]` means in a bit), just as it says next to
the object in your workspace. You can see the names of these columns (or
variables) by typing:
```{r names-data}
names(arbuthnot)
```
1. How many variables are included in this data set?
<ol>
<li> 2 </li>
<li> 3 </li>
<li> 4 </li>
<li> 82 </li>
<li> 1710 </li>
</ol>
<div id="exercise">
**Exercise**: What years are included in this dataset? Hint: Take a look at the year
variable in the Data Viewer to answer this question.
</div>
You should see that the data frame contains the columns `year`, `boys`, and
`girls`. At this point, you might notice that many of the commands in R look a
lot like functions from math class; that is, invoking R commands means supplying
a function with some number of arguments. The `dim` and `names` commands, for
example, each took a single argument, the name of a data frame.
<div id="boxedtext">
**Tip: ** If you use the up and down arrow keys, you can scroll through your
previous commands, your so-called command history. You can also access it
by clicking on the history tab in the upper right panel. This will save
you a lot of typing in the future.
</div>
### R Markdown
So far we asked you to type your commands in the console. The console is a great
place for playing around with some code, however it is not a good place for
documenting your work. Working in the console exclusively makes it difficult to
document your work as you go, and reproduce it later.
R Markdown is a great solution for this problem. And, you already have worked with
an R Markdown document -- this lab! Going forward type the code for the questions
in the code chunks provided in the R Markdown (Rmd) document for the lab, and **Knit**
the document to see the results.
### Some Exploration
Let's start to examine the data a little more closely. We can access the data in
a single column of a data frame separately using a command like
```{r view-boys}
arbuthnot$boys
```
This command will only show the number of boys baptized each year. The dollar
sign basically says "go to the data frame that comes before me, and find the
variable that comes after me".
2. What command would you use to extract just the counts of girls born?
<ol>
<li> `arbuthnot$boys` </li>
<li> `arbuthnot$girls` </li>
<li> `girls` </li>
<li> `arbuthnot[girls]` </li>
<li> `$girls` </li>
</ol>
```{r extract-counts-of-girls-born}
# type your code for the Question 2 here, and Knit
```
Notice that the way R has printed these data is different. When we looked at the
complete data frame, we saw 82 rows, one on each line of the display. These data
are no longer structured in a table with other variables, so they are displayed
one right after another. Objects that print out in this way are called vectors;
they represent a set of numbers. R has added numbers in [brackets] along the left
side of the printout to indicate locations within the vector. For example, in the arbuthnot$boys vector, 5218 follows [1], indicating that 5218 is the first entry in the vector. And if [43] starts a line, then that would mean the first number on that line would represent the 43rd entry in the vector.
R has some powerful functions for making graphics. We can create a simple plot
of the number of girls baptized per year with the command
```{r plot-girls-vs-year}
ggplot(data = arbuthnot, aes(x = year, y = girls)) +
geom_point()
```
Before we review the code for this plot, let's summarize the trends we see in the
data.
1. Which of the following best describes the number of girls baptised over the years included in this dataset?
<ol>
<li> There appears to be no trend in the number of girls baptised from 1629 to 1710. </li>
<li> There is initially an increase in the number of girls baptised, which peaks around 1640. After 1640 there is a decrease in the number of girls baptised, but the number begins to increase again in 1660. Overall the trend is an increase in the number of girls baptised. </li>
<li> There is initially an increase in the number of girls baptised. This number peaks around 1640 and then after 1640 the number of girls baptised decreases. </li>
<li> The number of girls baptised has decreased over time. </li>
<li> There is an initial increase in the number of girls baptised but this number appears to level around 1680 and not change after that time point. </li>
</ol>
Back to the code... We use the `ggplot()` function to build plots. If you run the
plotting code in your console, you should see the plot appear under the *Plots* tab
of the lower right panel of RStudio. Notice that the command above again looks like
a function, this time with arguments separated by commas.
- The first argument is always the dataset.
- Next, we provide thevariables from the dataset to be assigned to `aes`thetic
elements of the plot, e.g. the x and the y axes.
- Finally, we use another layer, separated by a `+` to specify the `geom`etric
object for the plot. Since we want to scatterplot, we use `geom_point`.
You might wonder how you are supposed to know the syntax for the `ggplot` function.
Thankfully, R documents all of its functions extensively. To read what a function
does and learn the arguments that are available to you, just type in a question mark
followed by the name of the function that you're interested in. Try the following in
your console:
```{r plot-help, tidy = FALSE}
?ggplot
```
Notice that the help file replaces the plot in the lower right panel. You can
toggle between plots and help files using the tabs at the top of that panel.
<div id="boxedtext">
More extensive help for plotting with the `ggplot2` package can be found at
http://docs.ggplot2.org/current/. The best (and easiest) way to learn the syntax is
to take a look at the sample plots provided on that page, and modify the code
bit by bit until you get achieve the plot you want.
</div>
### R as a big calculator
Now, suppose we want to plot the total number of baptisms. To compute this, we
could use the fact that R is really just a big calculator. We can type in
mathematical expressions like
```{r calc-total-bapt-numbers}
5218 + 4683
```
to see the total number of baptisms in 1629. We could repeat this once for each
year, but there is a faster way. If we add the vector for baptisms for boys to
that of girls, R will compute all sums simultaneously.
```{r calc-total-bapt-vars}
arbuthnot$boys + arbuthnot$girls
```
What you will see are 82 numbers (in that packed display, because we aren’t
looking at a data frame here), each one representing the sum we’re after. Take a
look at a few of them and verify that they are right.
### Adding a new variable to the data frame
We'll be using this new vector to generate some plots, so we'll want to save it
as a permanent column in our data frame.
```{r calc-total-bapt-vars-save}
arbuthnot <- arbuthnot %>%
mutate(total = boys + girls)
```
What in the world is going on here? The `%>%` operator is called the **piping**
operator. Basically, it takes the output of the current line and pipes it into
the following line of code.
<div id="boxedtext">
**A note on piping: ** Note that we can read these three lines of code as the following:
*"Take the `arbuthnot` dataset and **pipe** it into the `mutate` function.
Using this mutate a new variable called `total` that is the sum of the variables
called `boys` and `girls`. Then assign this new resulting dataset to the object
called `arbuthnot`, i.e. overwrite the old `arbuthnot` dataset with the new one
containing the new variable."*
This is essentially equivalent to going through each row and adding up the boys
and girls counts for that year and recording that value in a new column called
total.
</div>
<div id="boxedtext">
**Where is the new variable? ** When you make changes to variables in your dataset,
click on the name of the dataset again to update it in the data viewer.
</div>
You'll see that there is now a new column called `total` that has been tacked on
to the data frame. The special symbol `<-` performs an *assignment*, taking the
output of one line of code and saving it into an object in your workspace. In
this case, you already have an object called `arbuthnot`, so this command updates
that data set with the new mutated column.
We can make a plot of the total number of baptisms per year with the following command.
```{r plot-total-vs-year-line}
ggplot(data = arbuthnot, aes(x = year, y = total)) +
geom_line()
```
Note that using `geom_line()` instead of `geom_point()` results in a line plot instead
of a scatter plot. You want both? Just layer them on:
```{r plot-total-vs-year-line-and-point}
ggplot(data = arbuthnot, aes(x = year, y = total)) +
geom_line() +
geom_point()
```
<div id="exercise">
**Exercise**: Now, generate a plot of the proportion of boys born over time. What
do you see?
</div>
```{r plot-proportion-of-boys-over-time}
# type your code for the Exercise here, and Knit
```
Finally, in addition to simple mathematical operators like subtraction and
division, you can ask R to make comparisons like greater than, `>`, less than,
`<`, and equality, `==`. For example, we can ask if boys outnumber girls in each
year with the expression
```{r boys-more-than-girls}
arbuthnot <- arbuthnot %>%
mutate(more_boys = boys > girls)
```
This command add a new variable to the `arbuthnot` data frame containing the values
of either `TRUE` if that year had more boys than girls, or `FALSE` if that year
did not (the answer may surprise you). This variable contains different kind of
data than we have considered so far. All other columns in the `arbuthnot` data
frame have values are numerical (the year, the number of boys and girls). Here,
we've asked R to create *logical* data, data where the values are either `TRUE`
or `FALSE`. In general, data analysis will involve many different kinds of data
types, and one reason for using R is that it is able to represent and compute
with many of them.
## Dataset 2: Present birth records
In the previous few pages, you recreated some of the displays and preliminary
analysis of Arbuthnot's baptism data. Next you will do a similar analysis,
but for present day birth records in the United States. Load up the
present day data with the following command.
```{r load-present-data}
data(present)
```
The data are stored in a data frame called `present` which should now be loaded in
your workspace.
4. How many variables are included in this data set?
<ol>
<li> 2 </li>
<li> 3 </li>
<li> 4 </li>
<li> 74 </li>
<li> 2013 </li>
</ol>
```{r variables-in-present}
# type your code for Question 4 here, and Knit
```
<div id="exercise">
**Exercise**: What years are included in this dataset? **Hint:** Use the `range`
function and `present$year` as its argument.
</div>
```{r years-in-present-data}
# type your code for Exercise here, and Knit
```
5. Calculate the total number of births for each year and store these values in a new
variable called `total` in the `present` dataset. Then, calculate the proportion of
boys born each year and store these values in a new variable called `prop_boys` in
the same dataset. Plot these values over time and based on the plot determine if the
following statement is true or false: The proportion of boys born in the US has
decreased over time.
<ol>
<li> True </li>
<li> False </li>
</ol>
```{r prop-boys-over-time}
# type your code for Question 5 here, and Knit
```
6. Create a new variable called `more_boys` which contains the value of either `TRUE`
if that year had more boys than girls, or `FALSE` if that year did not. Based on this
variable which of the following statements is true?
<ol>
<li> Every year there are more girls born than boys. </li>
<li> Every year there are more boys born than girls. </li>
<li> Half of the years there are more boys born, and the other half more girls born. </li>
</ol>
```{r more-boys-per-year}
# type your code for Question 6 here, and Knit
```
7. Calculate the boy-to-girl ratio each year, and store these values in a new variable called `prop_boy_girl` in the `present` dataset. Plot these values over time. Which of the following best describes the trend?
<ol>
<li> There appears to be no trend in the boy-to-girl ratio from 1940 to 2013. </li>
<li> There is initially an increase in boy-to-girl ratio, which peaks around 1960. After 1960 there is a decrease in the boy-to-girl ratio, but the number begins to increase in the mid 1970s. </li>
<li> There is initially a decrease in the boy-to-girl ratio, and then an increase between 1960 and 1970, followed by a decrease. </li>
<li> The boy-to-girl ratio has increased over time. </li>
<li> There is an initial decrease in the boy-to-girl ratio born but this number appears to level around 1960 and remain constant since then. </li>
</ol>
```{r prop-boy-girl-over-time}
# type your code for Question 7 here, and Knit
```
8. In what year did we see the most total number of births in the U.S.? *Hint:* Sort
your dataset in descending order based on the `total` column. You can do this
interactively in the data viewer by clicking on the arrows next to the variable
names. Or to arrange the data in a descenting order with new function: `descr` (for
descending order).
<ol>
<li> 1940 </li>
<li> 1957 </li>
<li> 1961 </li>
<li> 1991 </li>
<li> 2007 </li>
</ol>
```{r most-total-births}
# type your code for Question 8 here
# sample code is provided below, edit as necessary, uncomment, and then Knit
#present %>%
# mutate(total = ?) %>%
# arrange(desc(total))
```
## Resources for learning R and working in RStudio
That was a short introduction to R and RStudio, but we will provide you with more
functions and a more complete sense of the language as the course progresses. You
might find the following tips and resources helpful.
- In this course we will be using the `dplyr` (for data wrangling) and `ggplot2` (for
data visualization) extensively. If you are googling for R code, make sure
to also include these package names in your search query. For example, instead
of googling "scatterplot in R", google "scatterplot in R with ggplot2".
- The following cheathseets may come in handy throughout the course. Note that some
of the code on these cheatsheets may be too advanced for this course, however
majority of it will become useful as you progress through the course material.
- [Data wrangling cheatsheet](http://www.rstudio.com/wp-content/uploads/2015/02/data-wrangling-cheatsheet.pdf)
- [Data visualization cheatsheet](http://www.rstudio.com/wp-content/uploads/2015/12/ggplot2-cheatsheet-2.0.pdf)
- [R Markdown](http://www.rstudio.com/wp-content/uploads/2016/03/rmarkdown-cheatsheet-2.0.pdf)
- While you will get plenty of exercise working with these packages in the labs of
this course, if you would like further opportunities to practice we recommend
checking out the relevant courses at [DataCamp](https://www.datacamp.com/courses).
<div id="license">
This is a derivative of an [OpenIntro](https://www.openintro.org/stat/labs.php) lab, and is released under a [Attribution-NonCommercial-ShareAlike 3.0 United States](https://creativecommons.org/licenses/by-nc-sa/3.0/us/) license.
</div>