# csv file
data <- read.csv("../00_data/Salaries.csv")
data <- read_excel("../01_module4/data/myData.xlsx")
Does age affect the bakers outcomes for the seasons?
ggplot(data = data) +
geom_point(mapping = aes(x = age, y = series_winner))
It seems there is a large range of age in the season winners of the Great British Baking Show. The median age of winners seems to be between 30 to 42 years old. There are outliers to this trend, but from the winners the average age is around the 30-40 years for winning. There are no indications of age for being a contestant on the show. There are trends indicating that winners are typically around the age range, but for all contestants age is not an indicator of success.