Arranging observations
Here you see the counties_selected dataset with a few interesting variables selected. These variables: private_work, public_work, self_employed describe whether people work for the government, for private companies, or for themselves.
In these exercises, you'll sort these observations to find the most interesting cases.
Ця вправа є частиною курсу
Data Manipulation with dplyr
Інструкції до вправи
- Add a verb to sort the observations of the
public_workvariable in descending order.
Інтерактивна практична вправа
Спробуйте виконати цю вправу, доповнивши цей зразок коду.
counties_selected <- counties %>%
select(state, county, population, private_work, public_work, self_employed)
counties_selected %>%
# Add a verb to sort in descending order of public_work
___