Penguin Data Basics Filter (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. Filter the data to include only penguins with flippers longer than 210 mm.
  2. Filter the data to include only penguins with flippers longer than 210 mm and body masses greater than 5000 g.
  3. Filter the data to include only penguins from the Dream or Torgersen islands.
Expected outputs for Penguin Data Basics Filter