1. 학습
  2. /
  3. 강의
  4. /
  5. Data Manipulation with dplyr

Connected

연습 문제

Summarizing

The summarize() verb is very useful for collapsing a large dataset into a single observation.

counties_selected <- counties %>%
  select(county, population, income, unemployment)

지침

100 XP
  • Summarize the counties dataset to find the following columns: min_population (with the smallest population), max_unemployment (with the maximum unemployment), and average_income (with the mean of the income variable).