knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

The Yearly Seedfall Summary dataset includes seed counts and germination rates of Picea glauca, Picea mariana, Betula neoalaskana (papyrifera), Picea mariana, Larix larciana, Alnus crispa, and Alnus tenuifolia. Seeds are collected in .25m^2 trays located on the forest floor of the a selected set of LTER successional sites.

Loading Data and Initial Plot

library(bonanza)
library(tidyverse)

seedfall <- bonanza::bnz_seedfall %>%
          filter(!is.null(`#Seeds`))

seedfall$`#Seeds` <- as.numeric(seedfall$`#Seeds`)
seedfall$`logSeeds` <- log(seedfall$`#Seeds`)
seedfall$`#Seeds /m2` <- as.numeric(seedfall$`#Seeds /m2`)

ggplot(seedfall, aes(x = `logSeeds`)) +
  geom_histogram(bins = 10)

ggplot(seedfall, aes(x = `#Seeds /m2`)) +
  geom_histogram(bins = 10)

The histograms of the raw and transformed reveal a skewed distribution for the seed count that is fixed by a log transformation. "#Seeds /m2", which represents the sum of the seeds divided by the tray area, also seems to gravitate towards extremely small values.

Extracting time series for specific sites:

fp5a <- seedfall %>%
          filter(TrayNo == 1) %>%
          filter(Site == "FP5A")

ggplot(data = fp5a, aes(x = `Seed Year`, y = `#Seeds`, group=`Species`, color=`Species`)) + geom_line()


up1a <- seedfall %>%
          filter(TrayNo == 1) %>%
          filter(Site == "UP1A")

ggplot(data = up1a, aes(x = `Seed Year`, y = `#Seeds`, group=`Species`, color=`Species`)) + geom_line()

The time series indicates that the seed count for the PICGLA site has consistently been decreasing since before 1960, similar to the BETNEO site, which has also been decreasing since its first recording in the 1980s. The ALNVIR site's seed count has been steadily increasing, however, which may give insight as to how the different site's soil and weather conditions may affect the growth of vegetation.

Citation

K. Van Cleve, F.S. Chapin, R.W. Ruess, and Bonanza Creek LTER. 2019. Bonanza Creek LTER: Yearly Seedfall Summary from 1985 to Present in the Bonanza Creek Experimental Forest near Fairbanks, Alaska ver 28. Environmental Data Initiative. https://doi.org/10.6073/pasta/8ecb7a0eca30148914bcf9cc1472d327 (Accessed 2021-03-08).

How we processed the raw data

See "bnz_seedfall.R"



TokyoExpress/bonanza documentation built on March 24, 2021, 2:21 a.m.