Goal: After completing this lab, you should be able to…
In this lab we will use, but not focus on…
R
Markdown. This document will serve as a template. It is pre-formatted and already contains chunks that you need to complete.Some additional notes:
library(tidyverse)
library(GGally)
For this lab we will again use some elements of the tidyverse
as a preview of the next lab which will focus on using the tidyverse
. (And hopefully be helpful for your second group projects.) The GGally
package is need to put plots created using ggplot2
side-by-side. (You may need to install this package.)
Note: To get these document easier to read, some code as been suppressed. Please see the RMarkdown document for access to all code used to create this document.
Recall the pain reduction data from class.
pain = read_csv("https://daviddalpiaz.github.io/stat3202-sp19/data/pain.csv")