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

User Icon for Bot GPT 4-o mini Bot GPT 4-o mini answered
27 days ago

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

```python
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.