Welcome to the PSYC3361 coding W1 self test. The test assesses your ability to use the coding skills covered in the Week 1 online coding modules.
In particular, it assesses your ability to…
It is IMPORTANT to document the code that you write so that someone who is looking at your code can understand what it is doing. Above each chunk, write a few sentences outlining which packages/functions you have chosen to use and what the function is doing to your data. Where relevant, also write a sentence that interprets the output of your code.
Your notes should also document the troubleshooting process you went through to arrive at the code that worked.
For each of the challenges below, the documentation is JUST AS IMPORTANT as the code.
Good luck!!
Jenny
library(tidyverse)
library(here)
frames <- read.csv(file = "data/birthweight_data.csv")
birthweight <- frames %>%
group_by(plurality) %>%
summarise(m_plurality = mean(birthweight)) %>%
ungroup()
print(birthweight)
## # A tibble: 2 × 2
## plurality m_plurality
## <chr> <dbl>
## 1 singleton 3248.
## 2 twin 2311.
print(birthweight$m_plurality)
## [1] 3248.103 2310.682
min_gestation <- frames %>%
group_by(child_ethn) %>%
summarise(min_gest = min(gestation_age_w)) %>%
ungroup()
print(min_gestation)
## # A tibble: 10 × 2
## child_ethn min_gest
## <chr> <chr>
## 1 Aboriginal/Torres Strait Islander 33
## 2 African/African-American 26
## 3 Caucasian 26
## 4 East Asian 33
## 5 Hispanic/Latino 37
## 6 Middle-Eastern 28
## 7 Missing 36
## 8 Polynesian/Melanesian 28
## 9 South Asian 28
## 10 South-East Asian 29
print(min_gestation$min_gest)
## [1] "33" "26" "26" "33" "37" "28" "36" "28" "28" "29"
The group_by function groups statistical analyses by the variables of interest. The summary function is used to conduct various analyses, such as mean, standard deviation, minimum, maximum and many more! The pipe function is used to connect group_by and summary by so that the two function works together.
Here is a helpful link if you want to learn more!
write.csv(birthweight, "birthweight_by_plurality.csv")