Why, and what?

Let’s put together everything you’ve learned! This lesson will give you practice with the contents of the lessons so far, and give you an example of the kind of R script that you might write for your own work.


Your mission

The data file Fundybirds.csv contains data on bird species counted in Fundy National Park during the Audubon Society’s annual Christmas Bird Count. Your goal is to write a new R script that does a basic analysis of these data.
Fundybirds.csv is a list of birds that were sighted during the bird count. Each observation (row) in Fundybirds.csv represents one bird sighting. The dataset contains the following variables:

Column Description
CommonName Common name for the observed bird
ScientificName Scientific name for the observed bird
Hour Hour during which the bird was counted

Your script should do the following:

Be sure to begin the script with commented lines with the file name, your name, the date, and a description of the script, and also comment liberally throughout the script to indicate what your code does!