Penguin Data Basics Select (dplyr)

If the file penguins.csv is not already in your working directory then download it into your working directory.

Load the data using read_csv() and use dplyr to complete the following tasks.

  1. Select the data from the species column.
  2. Select the data from the island and year.
  3. Select the data from the species, bill_length_mm, bill_depth_mm, and body_mass_g columns.
Expected outputs for Penguin Data Basics Select