This homework has two parts. Part 1 uses base R to inspect a dataframe. Part 2 uses dplyr to wrangle a different dataset.


Part 1 — Student Survey (dataframe basics)

Download StudentSurvey.csv from the Datasets folder on Blackboard. Save it next to this Rmd and set your working directory.

# Load the file
survey<-read.csv("StudentSurvey(1).csv")
# Q1. Check the head of the dataset
head(survey)
##        Year Sex Smoke   Award HigherSAT Exercise TV Height Weight Siblings
## 1    Senior   M    No Olympic      Math       10  1     71    180        4
## 2 Sophomore   F   Yes Academy      Math        4  7     66    120        2
## 3 FirstYear   M    No   Nobel      Math       14  5     72    208        2
## 4    Junior   M    No   Nobel      Math        3  1     63    110        1
## 5 Sophomore   F    No   Nobel    Verbal        3  3     65    150        1
## 6 Sophomore   F    No   Nobel    Verbal        5  4     65    114        2
##   BirthOrder VerbalSAT MathSAT  SAT  GPA Pulse Piercings
## 1          4       540     670 1210 3.13    54         0
## 2          2       520     630 1150 2.50    66         3
## 3          1       550     560 1110 2.55   130         0
## 4          1       490     630 1120 3.10    78         0
## 5          1       720     450 1170 2.70    40         6
## 6          2       600     550 1150 3.20    80         4
# Q2. Check the dimensions
dim(survey)
## [1] 362  17
# Q3. Create a table of students' sex and HigherSAT
table(survey$Sex, survey$HigherSAT)
##    
##         Math Verbal
##   F   4   81     84
##   M   3  124     66
# Q4. Display summary statistics for VerbalSAT
summary(survey$VerbalSAT)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   390.0   550.0   600.0   594.2   640.0   800.0
# Q5. Find the average GPA of students
mean(survey$GPA)
## [1] NA
mean(survey$GPA,na.rm=TRUE)
## [1] 3.157942
round(mean(survey$GPA,na.rm=TRUE),2)
## [1] 3.16
# Q6. Create a new dataframe called column_df that contains students' weight
#     and number of hours they exercise.
column_df<-survey[,c("Weight", "Exercise")]


# Q7. Access the fourth element in the first column of the StudentSurvey dataset.
survey[4,1]
## [1] "Junior"

Part 2 — Olympic Gymnasts (dplyr)

Don’t change this chunk — it loads and filters the dataset.

olympics <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2021/2021-07-27/olympics.csv')


  olympic_gymnasts <- olympics |>
  filter(!is.na(age)) |>
  filter(sport == "Gymnastics") |>
  mutate(
    medalist = case_when(
      is.na(medal) ~ FALSE,
      !is.na(medal) ~ TRUE
    )
  )

More info on the data: https://github.com/rfordatascience/tidytuesday/blob/master/data/2021/2021-07-27/readme.md

# Q8. Create a subset dataframe with these columns only: name, sex, age, team, year, medalist.
#     Call it df.(
df<-olympic_gymnasts[,c("name","sex","age","team","year","medalist")]

# Q9. From df, create df2 that only has the years 2008, 2012, and 2016.

df2 <- df[df$year %in% c(2008,2012,2016),]

# Q10. Group by those three years and summarize the mean age in each group.
df2 %>% group_by(year) %>% summarize(mean_age = mean(age, na.rm = TRUE))
## # A tibble: 3 × 2
##    year mean_age
##   <dbl>    <dbl>
## 1  2008     21.6
## 2  2012     21.9
## 3  2016     22.2
# Q11. Using the full olympic_gymnasts dataset, group by year and find the mean age
#      for each year. Call this oly_year.
#      (Bonus: find the minimum average age across years.)
oly_year <-olympic_gymnasts %>%
  group_by(year) %>%
  summarize(mean_age = mean(age, na.rm =TRUE))
min(oly_year$mean_age)
## [1] 19.86606
# Q12. Open-ended: come up with a question that requires at least TWO dplyr verbs.
#      Write the question, then the code that answers it. Below the chunk, briefly
#      explain why you chose this question.

   olympic_gymnasts %>%
     filter(year == 1928) %>%
     arrange(age) %>%
   slice(1) %>%
   select(name, sex, team, age)
## # A tibble: 1 × 4
##   name             sex   team    age
##   <chr>            <chr> <chr> <dbl>
## 1 Luigina Giavotti F     Italy    11

Your question and reflection: I chose this question because I wanted to identify the youngest gymnast in the 1928 Olympics using filtering, sorting, and selecting relevant information.