ПочатиПочніть безкоштовно

Using relocate

As you learned in the video, the relocate() verb allows you to move columns around relative to other columns or its overall position in the tibble.

You've been given the counties_selected tibble, which contains the columns you need for your analysis of population density, but in an order that isn't easy to read. You'll use your new-found skills to put them right!

Ця вправа є частиною курсу

Data Manipulation with dplyr

Переглянути курс

Інструкції до вправи

  • Move the density column to the end of the tibble.
  • Move the population column to before the land_area column.

Інтерактивна практична вправа

Спробуйте виконати цю вправу, доповнивши цей зразок коду.

counties_selected %>%
  # Move the density column to the end
  ___
  # Move the population column to before land_area
  ___
Редагувати та запускати код