Group Assignment - Desert Shrubs
Sampling Introduction to Quantitative Ecology:
Collaboration tips:
One member of the group needs to create a data sheet using Excel in OneDrive:
When we want to estimate populations of animals or plants in a area, we would like to be able to exhaustively survey the entire are of interest.
However, that is usually not possible due to constraints such as time, money, accessibility, etc.
How could we estimate the number of desert shrubs in a vacant block in Cathedral City, California?
The aerial satellite imagery for this exercise is from the empty block near the corner of Dinah Shore Drive and Da Vall Drive in Cathehdral City CA.
In your group, you’ll decide upon a sampling strategy to estimate the total count of desert shrubs.
The region has been divided into quadrats of different sizes:
As a group you’ll decide on a sampling strategy from those listed in Gardner:
For each of the quadrat sizes, you’ll randomly choose to count a number of quadrats (\(n\)) that cover 25%, 50%, and 75% of the total area as follows:
quadrat size | total quadrats (N) | quadrats to sample (n) | approx. coverage |
---|---|---|---|
large | 16 | 4 | 25% |
large | 16 | 8 | 50% |
large | 16 | 12 | 75% |
medium | 64 | 16 | 25% |
medium | 64 | 32 | 50% |
medium | 64 | 48 | 75% |
small | 128 | 32 | 25% |
small | 128 | 64 | 50% |
small | 128 | 96 | 75% |
Note that for transect sampling, your final number of sampled transects may not exactly match the numbers in the above table.
NOTES:
You can find the quadrat figures here:
You can use the script quadrat_sampling_script.R
to
select random transects. The file is located in the Course
Files tab in the Course Materials section of the GitHub
page.
The first row in your file needs to contain the following column names:
An example data sheet might look like:
quadrat_size | quadrat_ID | coverage | shrubs |
---|---|---|---|
medium | A1 | 25% | 12 |
medium | A1 | 50% | 11 |
medium | C2 | 75% | 9 |
small | L7 | 50% | 5 |
... | ... | ... | ... |
When your group has finished counting, make sure to export your data from Excel to a csv file
Name this file desert_shrubs.csv
and save it in the
data
subdirectory of your main course RProject folder.
To estimate the total numbers of shrubs, you’ll need to:
To calculate the mean quadrat counts you can use the formula for mean:
\(\bar{x} = \frac{x_1 + x_2 + x_3 + ... + x_n}{n}\)
You could calculate this manually, or… you could use R!
read.csv()
and
here()
.Your group will submit a short report, in a pdf file, via Moodle.
Your report must address the following questions:
You need to include a table showing:
for each quadrat size and sample coverage:
quadrat size | covarage | mean shrubs per quadrat | st dev. shrubs per quadrat | estimated total shrubs |
---|---|---|---|---|
large | 25% | |||
large | 50% | |||
large | 75% | |||
medium | 25% | |||
medium | 50% | |||
medium | 75% | |||
small | 25% | |||
small | 50% | |||
small | 75% |