See how that ended up
The imf_data also contains information about imports and exports. The imports_perc_change column refers to the percentage change of imports for a given country relative to the previous year. The exports_perc_change is the same but for exports instead of imports.
Get to pulling these columns out with ends_with()!
यह अभ्यास पाठ्यक्रम का हिस्सा है
Programming with dplyr
अभ्यास निर्देश
- Return
year,country, and those columns inimf_datathat conclude with"change".
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
# Choose year, country, and columns ending with "change"
imf_data %>%
___