Dr. Morales is interested in studying the factors controlling the size and carbon storage of shrubs. She has conducted an experiment looking at the effect of three different treatments on shrub volume at four different locations. She has placed the data file on the web for you to download:
If the file shrub-volume-data.csv is not already in your working directory (it probably is if you’re taking this class using Posit Cloud) then download it into your working directory.
Get familiar with the data by importing it using read_csv() and use dplyr to complete the following tasks.
- Filter the data to include only plants with heights greater than 5 (using
filter).
- Filter the data to include only plants with heights greater than 4 and widths greater than 2 (using
, or & to include two conditions).
- Filter the data to include only plants from Experiment 1 or Experiment 3 (using
| for “or”).