Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
The lapply() function
Other apply() functions
The split-apply-combine pattern
Summary
26. Exercise 3

Instruction

Correct! As you can see, the prize pool is quite high.

In the wimbledon_women data set, we have a list of winners from women's singles. We'll group these women by nationality. What do you think – which country had the most winning titles for women's singles?

Exercise

Split the wimbledon data set in such way that each member of the resulting list represents a single country. Store this result in a variable named winner_women_per_country.

Stuck? Here's a hint!

Split the wimledon_women data frame by the nationality column.