Session Ready
Exercise

Selecting columns of data

When you're dealing with large datasets, it can be confusing to look at many different columns of data at once. Here, select the President, Date, and Approve columns from the approval_polls dataset, and pipe the result to the head() function to display the results.

Instructions
100 XP
  • Using the select() function from the tidyverse package, extract the President, Date, and Approve columns from the approval_polls dataset.