Consider the relation race. Which code would display the number of runners from each country? (1 point) Responses country.value_counts() country.value_counts() race.value_counts() race.value_counts() race["country"].value_counts() race["country"].value_counts() race["country"].info()

1 answer

To display the number of runners from each country in the race DataFrame, you would use the following code:

race["country"].value_counts()

This command will count the occurrences of each unique value in the "country" column of the race DataFrame, effectively giving you the number of runners from each country.