1. Learn
  2. /
  3. Courses
  4. /
  5. Programming with dplyr

Exercise

Rearranging with select() and last_col()

You can also use last_col() with : to organize the last few columns in your data. Work with the select() function to match the ordering of the imf_data shown. Note that this ordering is different than what you saw in the previous exercise.

Instructions

100 XP
  • Choose columns iso through year.
  • Then, match for columns starting with "gov" using regular expressions.
  • Finally, have your remaining columns ordered as gdp_in_billions_of_usd to the last column.