- Importing Data 1:29
- Exploration Methods
- Review Exploration Methods 3 questions
- Selecting Data
- Review Selecting Data 2 questions
- Optional Challenge #1 - Top Referrers
- Manipulation 0:50
- Manipulation Techniques
- Review Manipulation Techniques 4 questions
- Optional Challenge #2 - Update Users
- Combining DataFrames 0:55
- Combining DataFrames
- Handling Duplicated and Missing Data
- Review Merging and Handling Missing Data 3 questions
- Manipulating Text
- Optional Challenge #3 - Verified Email List
- Grouping
- Review Text Manipulation and Grouping 2 questions
- Until Next Time 1:15
Well done!
You have completed Review Text Manipulation and Grouping!
Quiz Question 1 of 2
In my summer_games
DataFrame, the casing of the Athlete
field is kind of strange. See:
summer_games.head(3)
Year | City | Sport | Discipline | Athlete | Country | Gender | Event | Medal | |
---|---|---|---|---|---|---|---|---|---|
0 | 1896 | Athens | Aquatics | Swimming | HAJOS, Alfred | HUN | Men | 100M Freestyle | Gold |
1 | 1896 | Athens | Aquatics | Swimming | HERSCHMANN, Otto | AUT | Men | 100M Freestyle | Silver |
2 | 1896 | Athens | Aquatics | Swimming | DRIVAS, Dimitrios | GRE | Men | 100M Freestyle For Sailors | Bronze |
Instead of the last name all uppercased like that, I'd like to have it with the first letter capitalized and the rest lowercased.
Which of the following statements would accomplish that.
Choose the correct answer below: