Is bison grazing an effective strategy for restoring oak-savannah ecosystems?
Bison would likely eat plants that are more dominant within the landscape and therefore would encourage oak growth when the landscape is being burned. Grazing species are typically beneficial to the ecosystem. However, it depends on the amount of bison because overgrazing could lead to desertification.
library(ggplot2)
library(dplyr)
library(lubridate)
library(grid)
setwd("~/Documents/Fall 2021/bigdata")
percent.species.cover <- read.csv("percent.species.cover.csv")
oak.sampling.growth <- read.csv("Oak Sampling Growth.csv")
biomass.with.type <- read.csv("speciesorder.3.csv")
#2 way ANOVA is a stats test that can compare groups of groups (ie, grazed/not grazed is a group, and fall/spring is a group)
graze_and_season_interaction <- aov(height ~ grazed * season, data = oak.sampling.growth)
summary(graze_and_season_interaction)
## Df Sum Sq Mean Sq F value Pr(>F)
## grazed 1 8 8 0.049 0.825
## season 1 5061 5061 29.728 5.94e-08 ***
## grazed:season 1 4 4 0.025 0.875
## Residuals 1307 222497 170
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 9 observations deleted due to missingness
biomass.with.type%>%
filter(mass < 50) %>%
ggplot(aes(x=type, y=mass, color=grazed)) +
geom_boxplot() +
labs(x="Biomass Categroy", y= "Mass (grams)", title = "Mass of Grazed and Ungrazed Plants by Type") +
theme_minimal() +
scale_color_brewer(palette="Accent")
grazed_and_type <- aov(mass ~ grazed * type, data = biomass.with.type)
summary(grazed_and_type)
## Df Sum Sq Mean Sq F value Pr(>F)
## grazed 1 1585 1585 2.424 0.120
## type 3 629866 209955 321.019 <2e-16 ***
## grazed:type 3 1505 502 0.767 0.513
## Residuals 1778 1162861 654
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
TukeyHSD(x=grazed_and_type,'type')
## Tukey multiple comparisons of means
## 95% family-wise confidence level
##
## Fit: aov(formula = mass ~ grazed * type, data = biomass.with.type)
##
## $type
## diff lwr upr p adj
## gram-forb 2.027898 -1.505444 5.56124 0.4523714
## litter-forb 73.721334 67.366864 80.07580 0.0000000
## wood-forb 13.587169 8.819623 18.35471 0.0000000
## litter-gram 71.693436 65.394331 77.99254 0.0000000
## wood-gram 11.559271 6.865773 16.25277 0.0000000
## wood-litter -60.134165 -67.199836 -53.06849 0.0000000
#testing if we're all set on the burn plots
not_burned_litter.1 <- biomass.with.type %>%
filter(burn_unit %in% c("309")) %>%
ggplot(aes(x=type, y=mass, color=grazed)) +
geom_boxplot() +
labs(x="Biomass Type", y="Mass (grams)", title="Unburned Plots") +
theme_minimal() +
scale_color_brewer(palette="Accent")
burned_litter.1 <- biomass.with.type %>%
filter(burn_unit %in% c("102", "103", "104", "105", "108", "309", "409")) %>%
ggplot(aes(x=type, y=mass, color=grazed)) +
geom_boxplot() +
labs(x="Biomass Type", y="Mass (grams)", title="Burned Plots") +
theme_minimal() +
scale_color_brewer(palette="Accent")
grid.newpage()
grid.draw(rbind(ggplotGrob(not_burned_litter.1), ggplotGrob(burned_litter.1) , size = "last"))
grazed_and_type_burned <- biomass.with.type%>%
filter(burn_unit %in% c("102", "103", "104", "105", "108", "309", "409"))
grazed_burned_aov <- aov(mass ~ grazed * type, data = grazed_and_type_burned)
summary(grazed_burned_aov)
## Df Sum Sq Mean Sq F value Pr(>F)
## grazed 1 1585 1585 2.424 0.120
## type 3 629866 209955 321.019 <2e-16 ***
## grazed:type 3 1505 502 0.767 0.513
## Residuals 1778 1162861 654
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.
grazed_and_type_unburned <- biomass.with.type%>%
filter(burn_unit %in% c("309"))
grazed_unburned_aov <- aov(mass ~ grazed * type, data = grazed_and_type_unburned)
summary(grazed_unburned_aov)
## Df Sum Sq Mean Sq F value Pr(>F)
## grazed 1 23547 23547 13.099 0.000408 ***
## type 3 798719 266240 148.114 < 2e-16 ***
## grazed:type 3 11062 3687 2.051 0.109360
## Residuals 144 258844 1798
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
TukeyHSD(x=grazed_unburned_aov,'type')
## Tukey multiple comparisons of means
## 95% family-wise confidence level
##
## Fit: aov(formula = mass ~ grazed * type, data = grazed_and_type_unburned)
##
## $type
## diff lwr upr p adj
## gram-forb -0.8470974 -30.571453 28.87726 0.9998536
## litter-forb 231.3979643 198.104756 264.69117 0.0000000
## wood-forb 15.1682048 -9.069491 39.40590 0.3669580
## litter-gram 232.2450617 198.711466 265.77866 0.0000000
## wood-gram 16.0153022 -8.551550 40.58215 0.3303422
## wood-litter -216.2297595 -245.012230 -187.44729 0.0000000
not totally meaningless. It showed oak saplings being taller in fall than in spring, suggesting they had grown throughout the summer. In the plots comparing burned to unburned areas, every plant type appeared to have a lower biomass in the unburned plots except for plant litter. This suggests that burning clears litter and promotes growth of living plants, as has been shown in many previous studies. In the future, more years of data could be explored— perhaps over time it will become more conclusive. If possible, it would also be ideal to conduct a similar experiment in a larger area, and therefore be able to better mimic the true historical behaviors of bison, who grazed and roamed across long distances, allowing areas of land to rest and not be overgrazed. It would also be interesting to examine the use of other grazing animals, like cattle, in an oak savanna ecosystem, as their effectiveness is being studied in grasslands restorations.
Knapp, A. et al, The Keystone Role of Bison in North American Tallgrass Prairie: Bison increase habitat heterogeneity and alter a broad array of plant, community, and ecosystem processes, BioScience, Volume 49, Issue 1, January 1999, Pages 39–50, https://doi.org/10.1525/bisi.1999.49.1.39
Hess, A. American bison influences on lepidopteran and wild blue lupine distribution in an oak savanna landscape, J Insect Conserv (2014) 18:327–338 DOI 10.1007/s10841-014-9640-x
Petersen, D. Reich, P. Ecological Applications, Volume 11, Issue 3, June 2001 https://doi.org/10.1890/1051-0761(2001)0110914:PFIOSF2.0.CO;2
Moura, L. et al., The legacy of colonial fire management policies on traditional livelihoods and ecological sustainability in savannas: Impacts, consequences, new directions, Journal of Environmental Management Volume 232, 15 February 2019, Pages 600-606 https://doi.org/10.1016/j.jenvman.2018.11.057