Unemployment rates by region
The world_bank_data tibble contains information about countries for reported years. It also includes geographic data in its continent and region variables. In this exercise and the next, you'll work on creating and calling functions that wrap dplyr code.
Throughout this chapter, dplyr and world_bank_data have been loaded for you.
यह अभ्यास पाठ्यक्रम का हिस्सा है
Programming with dplyr
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
# Complete the function code
unemployment_by_region <- ___(region_name) {
___ %>%
select(iso, country, year,
continent, region, unemployment_rate) %>%
___
}