शुरू करेंमुफ़्त में शुरू करें

Looking for matches

You can use the matches() function inside of select() to return columns with names that match a particular string or regular expression. This can be helpful if the columns you want to choose do not fall immediately after each other but follow a particular pattern in their names. You'll work with the imf_data to return different subsets of columns according to patterns found with a string argument to matches().

यह अभ्यास पाठ्यक्रम का हिस्सा है

Programming with dplyr

पाठ्यक्रम देखें

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

# Choose country, year, and "perc" or "rate" columns
imf_data %>% 
	select(___)
कोड संपादित करें और चलाएँ