Data Visualization – Project 2 Solved

$ 24.99
Category:

Description

This is the dataset you will be working with:
olympic_gymnasts <- olympics %>% filter(!is.na(age)) %>% # only keep athletes with known age filter(sport == “Gymnastics”) %>% # keep only gymnasts mutate( medalist = case_when( # add column for success in medaling is.na(medal) ~ FALSE, # NA values go to FALSE
!is.na(medal) ~ TRUE # non-NA values (Gold, Silver, Bronze) go to TRUE
)
)
Question: Are there age differences for male and female Olympic gymnasts who were successful or not in earning a medal, and how has the age distribution changed over the years?
We recommend you use a violin plot for the first part of the question and faceted boxplots for the second question part of the question.

Approach: To answer the first question, we’ll use a violin plot to visualize the age distribution of male and female medalists and non-medalists. The violin plot is used to show us a clearer view into the distribution, as opposed to a boxplot which requires more reading-into to understand. To answer the second question, we’ll use boxplots instead of violins (it might get a bit messy with the violins) and boxplots (with the parameter varwidth set to true) will allow us to make inferences based on the amount of values in boxplot. We’ll use facets to break down the boxplot into the individual years.
Analysis:

Discussion: Let’s dig into the first plot. There seems to be no big difference between non-medalists and medalists in terms of age, as they are centered at around the same value. This could explained by the athletic nature of the events, requiring females and males to be in a specific age range at peak muscle mass development. Experience in the event could be a factor that causes this to go the other way (favoring older athletes) but that isn’t the case in gymnastics. Gymnastic success depends individual ability rather than strategy. A good gymnast has to be able to balance, jump high, and soar through the air. There isn’t a viable strategy other than “getting it right” as opposed to other Olympic events, such as team sports.
While we’re still on the first graph, let’s talk about the differences between male and female athletes. It’s clear that male athletes tend to be older, and female athletes tend to be younger. Why is this? It goes back to the age ranges of peak muscle mass between men and women. From “Essentials of Strength Training and Conditioning” a book by the National Strength and Conditioning Association (NSCA) the following is said on the about the age gap on muscle development: “Peak muscle mass occurs between the ages of 16 and 20 years in females and between 18 and 25 years in males unless affected by resistance exercise, diet, or both.” This explains our differences in age.
Moving onto the second plot, we have a lot to look at. First the obvious observations. The evolution of age, sex, and outcome in the Olympics changed drastically in 1928, as women were allowed to participate in the games, introducing female athletes. The amount of athletes that were awarded medals is much smaller than the nonmedalists in almost every year (as seen by the width of the boxplots), as is the nature of the Olympic games where only the top three athletes are awarded medals. And the age gap talked about in the discussion of the first plot has seem to persisted across the years.
Let’s talk about some interesting observations. In 1928, there seems to be more medalists than non-medalists in women’s gymnastics. What’s up with that? According to the Wikipedia article for Gymnastics at the 1928 Olympic Games, “Only the team results (both combined and with respect to exercise) were published for the women, providing no information whatsoever about the capacities of the various individual women who competed here.” Interesting. And in 1932, there were no women gymnastic events, although there had been in the games prior. Another glance at Wikipeida shows: “There was apparently no women’s team gymnastics event like there was in the previous 1928 Olympics (which was the first Olympics where there was a women’s gymnastics competition) and like there would be for every single Summer Olympic games onward. No mention was ever made of this, nor was a rationale ever given anywhere in the Official Olympic report (or elsewhere), although there were women gymnasts who traveled to Los Angeles and participated in exhibition events at these games.”

Reviews

There are no reviews yet.

Be the first to review “Data Visualization – Project 2 Solved”

Your email address will not be published. Required fields are marked *