Research Questions
Q1) How do pre and post-fire soil respiration, GPP and plant communities compare?
Q2) How did the fire change land-atmosphere C exchange sensitivity to environmental variables.
Q3) Why did this ecosystem return to a net carbon sink so fast?
Hypothesis
H1) Pre and post-fire NEE differences were driven by changes in GPP.
H2) Rapid return to net carbon sink was due to a highly favorable climate and conditions for rapid establishment and growth of fast-growing plants.
Daily Boxplots of Fluxes
# Daily Sum NEE in gC/m2/day boxplots
p <- ggplot(dailyNEE, aes(x=year, y=x)) + geom_boxplot() + labs(title="Distribution of NEE in gC/m2/day")
p

# Daily Sum GPP in gC/m2/day boxplots
p <- ggplot(dailyGPP, aes(x=year, y=x)) + geom_boxplot() + labs(title="Distribution of GPP in gC/m2/day")
p

# Daily Sum RECO in gC/m2/day boxplots
p <- ggplot(dailyRECO, aes(x=year, y=x)) + geom_boxplot() + labs(title="Distribution of RECO in gC/m2/day")
p

# Daily Sum NEE in gC/m2/day boxplots
p <- ggplot(dailyNEE, aes(x=month, y=x)) + geom_boxplot() + labs(title="Distribution of NEE in gC/m2/day") + facet_wrap(~year)
p

# Daily Sum GPP in gC/m2/day boxplots
p <- ggplot(dailyGPP, aes(x=month, y=x)) + geom_boxplot() + labs(title="Distribution of GPP in gC/m2/day")+ facet_wrap(~year)
p

# Daily Sum RECO in gC/m2/day boxplots
p <- ggplot(dailyRECO, aes(x=month, y=x)) + geom_boxplot() + labs(title="Distribution of RECO in gC/m2/day")+ facet_wrap(~year)
p
