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
___