If the file penguins_no_na.csv is not already in your working directory then download it into your working directory.
Load penguins_no_na.csv into R using read_csv().
- Use the
group_by() and summarize() functions to get a count of the number of individuals in each species.
- Use the
group_by() and summarize() functions to calculate the average bill_length_mm for each species.
- Use the
group_by() and summarize() functions to calculate the maximum flipper_length_mm for each species on each island.
- Use the
filter(), group_by() and summarize() functions to get the mean body mass of Chinstrap penguins on each island.
- Find the mean bill ratio (bill length / bill depth) for each species on each island.