Chapter 16 French Open Winners

The following bar plot shows the French Open winners

french = getTournamentWinners("French Open","F") 
plotTournamentWinners(french,'French Open Winners Count')

16.1 Distribution of Age of French Open Winners

summary(french$winner_age)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   20.55   22.88   24.99   25.34   27.10   33.66
french %>%
  ggplot(aes(x = winner_age)) +
  geom_histogram(binwidth = 1,fill = fillColor) +
  labs(x= 'Winner Age',y = 'Count', title = paste("Distribution of", ' Winner Age ')) +
  theme_bw()

The plot shows the French Open winners are mostly between 22 and 27.