1. Please briefly describe your experience with programming prior this class.

Answer: I took Stat295 which is purely RStudio work. I’m very confident and comfortable with R.

  1. Insert a code chunk with the content being 1 + 1. If you don’t know what a code chunk is, refer to these notes. Your knitted document should have the results of the code displayed below, i.e. # 2.
cat(1+1)
## 2

Answer: 2

  1. Below, I’ve taken the mean of ages of students in a surveyed classroom. I’ve stored that in a variable called mean_ages. In the Answer area, please write a sentence telling me the mean ages using the inline R chunk syntax.
ages <- c(20, 18, 21, 19, 20, 17, 22, 19, 18, 19)
mean_ages <- mean(ages)

Answer: 19.3

The average age of the students is 19.3

  1. (Optional) Is there anything else I should know about you?

Answer: I enjoy watching the English Premier League.