Checking for equal sets
Portugal has excellent recent data in both the World Bank data and in the IMF data. Are the same years available for Portugal in both datasets?
world_bank_data and imf_data have been loaded for you.
यह अभ्यास पाठ्यक्रम का हिस्सा है
Programming with dplyr
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
# Isolate on Portugal rows and year column in both datasets
prt_imf <- ___ %>%
___ %>%
select(year)
prt_wb <- ___ %>%
___ %>%
select(year)