Christensen et al. (1996) studied the relationships between coarse woody debris (CWD) and shoreline vegetation and lake development in a sample of 16 lakes in North America. The main variables of interest:
density of cabins (no. km−1)
density of riparian trees (trees km−1)
basal area of riparian trees (m2 km−1)
density of coarse woody debris (no. km−1)
basal area of coarse woody debris (m2 km−1)
Visualize data
Linear model
m1 <-lm(cwdbasal ~ ripdens, data = d)summary(m1)
Call:
lm(formula = cwdbasal ~ ripdens, data = d)
Residuals:
Min 1Q Median 3Q Max
-38.62 -22.41 -13.33 26.16 61.35
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) -77.09908 30.60801 -2.519 0.024552 *
ripdens 0.11552 0.02343 4.930 0.000222 ***
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Residual standard error: 36.32 on 14 degrees of freedom
Multiple R-squared: 0.6345, Adjusted R-squared: 0.6084
F-statistic: 24.3 on 1 and 14 DF, p-value: 0.0002216
Plot predicted values vs residuals
Discussion
Thoughts on the reading (6.1; continuous predictor)
This material is foundational. You’ve probably done a linear regression before. If you were teaching an undergrad, what is a key point you would emphasize?
Box 6.7
Keough and Raimondi (1995) set up an experiment to examine the response of serpulid (polychaete worms) larvae to four types of biofilms on hard substrata in shallow marine waters. The four treatments were:
F: field substrata (with a net, to exclude other invertebrates)
NL: netted substrata developed in the lab
UL: un-netted substrata developed in the lab
SL: sterile substrata in the lab, without a net
Visualize data
Linear model
m1 <-lm(lserp ~ film, data = d)summary(m1)
Call:
lm(formula = lserp ~ film, data = d)
Residuals:
Min 1Q Median 3Q Max
-0.22929 -0.06500 0.01843 0.07054 0.19557
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 2.11343 0.04411 47.912 < 2e-16 ***
filmNL 0.06843 0.06238 1.097 0.28356
filmSL -0.17943 0.06238 -2.876 0.00831 **
filmUL 0.01886 0.06238 0.302 0.76504
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Residual standard error: 0.1167 on 24 degrees of freedom
Multiple R-squared: 0.4292, Adjusted R-squared: 0.3578
F-statistic: 6.015 on 3 and 24 DF, p-value: 0.003314
Set your reference level
d <- d %>%mutate(film_ =fct_relevel(film, "SL", "UL", "NL", "F"))glimpse(d$film); glimpse(d$film_)
Thoughts on the reading (6.2; categorical predictor)
This material is foundational. You’ve probably done a one-way ANOVA before. If you were teaching an undergrad, what is a key point you would emphasize?