Visualizing uncertainty of models

AE 08

Data prep

duke_forest <- duke_forest |>
  filter(bed != 6) |>
  mutate(bed = as.factor(bed))

Bootstrap samples

# add code here

Part 1: Bootstrap confidence intervals for predictions

# add code here

Part 2: Distributions of model estimates

# add code here