dplyr

Portal Data Manipulation Pipes


Download a copy of the Portal Teaching Database surveys table and load it into R using read.csv().

Use pipes (%>%) to combine the following operations to manipulate the data.

  1. Use mutate(), select(), and filter() with is.na() to create a new data frame with the year, species_id, and weight in kilograms of each individual, with no null weights.
  2. Use the filter() and select() to get the year, month, day, and species_id columns for all of the rows in the data frame where species_id is SH.
[click here for output]