Writing Procedures to Process Datasets Quick Check 2 of 52 of 5 Items Question Use the image to answer the question. Source: Oxford Designers & Illustrators Ltd. Pearson Education Ltd Consider the relation race. Which code would display the number of runners from each country? (1 point) Responses race["country"].info() race["country"].info() country.value_counts() country.value_counts() race["country"].value_counts() race["country"].value_counts() race.value_counts() race.value_counts() Skip to navigation page 5 of 5

1 answer

To display the number of runners from each country in the relation race, the correct code would be:

race["country"].value_counts()

This code will count the occurrences of each unique country in the country column of the race DataFrame and display the results.