]> code.communitydata.science - stats_class_2020.git/blob - r_tutorials/w09-R_tutorial.rmd
updating explanation of part I to address reasons for dropped observations
[stats_class_2020.git] / r_tutorials / w09-R_tutorial.rmd
1 ---
2 title: "Week 9 R tutorial"
3 author: "Aaron Shaw and Jeremy Foote"
4 date: "November 8, 2020 (revised)"
5 output:
6   html_document:
7     toc: yes
8     toc_depth: 3
9     toc_float:
10       collapsed: true
11       smooth_scroll: true
12     theme: readable
13   pdf_document:
14     toc: yes
15     toc_depth: '3'
16   header-includes:
17   - \newcommand{\lt}{<}
18   - \newcommand{\gt}{>}
19 ---
20
21 ```{r setup, include=FALSE}
22 knitr::opts_chunk$set(echo = TRUE)
23 ```
24
25 # Analyzing continuous data with t-tests and ANOVA
26
27 ## t-tests
28 You learned the theory/concepts behind t-tests last week, so here's a brief run-down on how to use built-in functions in R to conduct them and interpret the results. As a reminder, t-tests are used to estimate the difference-in-means between two continuous distributions. You might be working with a one-sample test, two (independent samples, pooled or paired samples, or difference scores. R can handle most of this stuff and, if not, remember that you know how to write your own functions!
29
30 The usual procedure for conducting t-tests in R is pretty straightforward: you use the `t.test()` function. For my example, I'll simulate two groups by randomly sampling the `rivers` dataset. I will then conduct a two-sample t-test for difference of means under a null hypothesis of no difference.
31
32 ```{r}
33 set.seed(20201107)
34 group.a <- sample(rivers, 35, replace=TRUE)
35 group.b <- sample(rivers, 42, replace=TRUE)
36
37 t.test(group.a, group.b)
38 ```
39 Notice everything that is contained in the output: It tells me what test I just ran (a two sample t-test). It also tells me the names of the two groups. Then it reports the test statistic (t) value, the degrees of freedom, and a p-value. It states my alternative hypothesis explicitly and includes a 95% confidence interval before also reporting the sample means for each group (which you can use to directly calculate your point estimate). 
40
41 Go read the documentation for `t.test()` in R as the function has many possible arguments to help you conduct exactly the sort of t-test you want given the particulars of your data, hypotheses, etc. The documentation will also tell you quite a lot about the output or "values" returned by the function. As with most tests and operations in R, you can store the output of a `t.test()` call as an object. In the code below, notice what values the object has and how you might use the object to call specific values later.
42
43 ```{r}
44 t.result.ab <- t.test(group.a, group.b)
45
46 t.result.ab ## same as before
47
48 names(t.result.ab)
49
50 t.result.ab$conf.int
51 ```
52 You never need to calculate a confidence interval for a difference in means by hand again. You can even set other $\alpha$ values in the call to t-test if you want to estimate another interval (see the documentation).
53
54 ## ANOVAs
55
56 Here's a very brief introduction to how you can perform an ANOVA in R. Let's use the `iris` dataset (look up `help(iris)` to learn about it) to build an example in which we test whether irises of different species have different average sepal width. Remember that the purpose of an ANOVA is to compare some continuous outcome across two or more categories to test the global hypothesis of any differences between groups.
57
58 In the code block below, I explicitly store the `iris` dataset and then call `aov()` to conduct the test. In the call to `aov()` I indicate the variables and dataset I want to use. Notice the use of the tilde character ("~"). The tilde indicates that you're providing R some information as a "formula." This particular command tells R that I'm using the variables before and after the tilde as the dimensions of my ANOVA. The `aov()` function follows a convention that the dependent or outcome variable has to go first (on the left-hand side of the tilde) in the formula (just try it the other way if you want to see what happens — since ANOVAs assume a continuous outcome it won't work to try and use the categorical measure as the DV).
59
60 ```{r}
61 iris <- iris
62
63 aov(Sepal.Width ~ Species, data=iris)
64 ```
65 Hmm, wait a minute. That doesn't look quite right. Where's the F statistic? Where's the p-value? Why doesn't this table look like the ANOVA tables the book showed us?
66
67 Not to worry. As with many statistical tests in R, the `aov()` function did everything it promised, you just need to ask it explicitly to show you the "summary" of the test to get the information you're looking for. You can also store the results and call `summary()` as a separate command.
68 ```{r}
69 summary(aov(Sepal.Width ~ Species, data=iris))
70
71 aov1.result <- aov(Sepal.Width ~ Species, data=iris)
72
73 summary(aov1.result)
74 ```
75 That should look more familiar. It's good to get accustomed to storing your model results and then calling `summary()` on the output. Such a routine is typical for many other types of statistical tests in R (such as regression models).
76
77 Note that the object returned by `aov()` has values that you can also call directly just like we did with the output of `t.test()` above. In the example below, I've asked R to show me the residuals (deviation from the sample mean across all groups) for each row of the dataset. I'm not sure what you might use this for, but it's available.
78
79 ```{r}
80 names(aov1.result)
81
82 aov1.result$residuals
83
84 ```
85
86 As with all functions in R, I *strongly* encourage you to read the documentation before you set out to conduct your own ANOVAs in the wild. There are details and settings that it may be important to consider. In addition, you might notice in the documentation for ANOVAs that R actually conducts the ANOVA by performing a linear regression (whaaaat??!?!?). Turns out that ANOVA is just a special case of linear regression with some idiosyncratic assumptions and standards for the type of summary information that needs to be reported. No need to worry about the details of that for now, but it can be good to have in the back of your mind for future reference in case you find yourself in a situation where you had planned to run an ANOVA, but your data just doesn't fit the assumptions necessary to identify the model. (Also, this is the point where Nick Vincent will want to remind you that most statistical tests can, in some way or another, be represented/understood as a special case of a linear model).
87
88 ## Multiple comparisons
89
90 Alright, you've run your ANOVA or whatever and now you want to compare a bunch of different group means against each other. How do you avoid issues with multiple comparisons? The two approaches you've read about so far (the Bonferroni Correction and the Benjamini-Hochberg procedure) are not difficult to conduct by-hand, but R also has a handy `pairwise.t.test()` function that can take care of this for you.
91
92 You can (and should) read the documentation for `pairwise.t.test()` yourself, but to get you started here's a simple example of how it works. Let's imagine that I wanted to perform all possible pairwise comparisons between mean sepal width across the different species of irises included in the ANOVA analysis I just conducted above. Since there are three different species, that results in ($\binom{3}{2}=3$) possible pairs (remember those binomial coefficients from a few weeks ago? I knew you would!). I can use the `with()` command to provide the dataframe and then call `pairwise.t.test()` across the same dimensions that I used to conduct my ANOVA. I can also provide a number of specific arguments to `pairwise.t.test()` including one for `p.adjust.method`, which helps manage corrections for multiple comparisons. In the example below, I've demonstrated how you can use the Bonferroni and Benjamini-Hochberg corrections by supplying the appropriate arguments to `p.adjust.method`. If you want to learn more, you can also check out the documentation for another function called `p.adjust()` that offers additional correction methods.
93 ```{r}
94 with(iris,
95      pairwise.t.test(Sepal.Width, Species, p.adjust.method = "bonferroni"))
96
97 with(iris,
98      pairwise.t.test(Sepal.Width, Species, p.adjust.method = "BH"))
99
100 ```
101 The three values in the little matrices there correspond to the p-values for the pairwise differences of means. Depending on your alpha value, all of these differences seem to meet standard thresholds for statistical significance, indicating that we can reject the null hypothesis of no differences in every case. (The example is a little crude/simple since there are only three groups, the bar would get higher with additional groups to compare!).
102

Community Data Science Collective || Want to submit a patch?