Skip to content

Commit

Permalink
Add density summary for later-burned interior
Browse files Browse the repository at this point in the history
  • Loading branch information
youngdjn committed Sep 29, 2024
1 parent a6f98e1 commit e4fcdcd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions scripts/analysis/summary-stats-for-paper.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ d_sp |>
dens_median = median(seedl_dens_sp),
n = n())

## Specifically later-burned interior plots
d_sp |>
filter(grn_vol_abs_sp == 0,
((is.na(dist_grn_sp) | dist_grn_sp > minimum_dist_green) & sight_line > minimum_dist_green),
plot_type %in% c("core", "delayed"),
day_of_burning > 210) |>
summarize(dens_mean = mean(seedl_dens_sp),
dens_median = median(seedl_dens_sp),
n = n())


## Seed wall plots burning BEfore 1 Aug
d_sp |>
Expand Down

0 comments on commit e4fcdcd

Please sign in to comment.