Get startedGet started for free

Analyze the region results

You'll next call the grouped_median_for_column() function a few more times. Keep a close eye on the results of each call!

The grouped_median_for_column() function you defined in the previous exercise has been loaded for you in addition to the previous ones for this chapter. Remember, if you'd like to look at the grouped_median_for_column code, run grouped_median_for_column in the console.

This exercise is part of the course

Programming with dplyr

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Median fertility rate by region for world_bank_data
region_fert_rate <- ___ %>% 
	___

region_fert_rate
Edit and Run Code