|
1 | | -#' Compute predicted canopy cover from individual tree measurements |
| 1 | +#' Predict plot-level canopy cover from individual tree measurements |
2 | 2 | #' |
3 | 3 | #' `calc_tcc_metrics()` computes predicted plot-level tree canopy cover (TCC) |
4 | 4 | #' from standard field inventory measurements. By default, a full set of stand |
5 | | -#' structure metrics used to derive the plot-level TCC value are included in the |
6 | | -#' output (see Details). |
| 5 | +#' structure variables used to derive the plot-level TCC value are included in |
| 6 | +#' the output (see Details). |
7 | 7 | #' |
8 | 8 | #' @details |
9 | 9 | #' This function provides two methods for predicting plot-level TCC. |
|
17 | 17 | #' modeling of the understory sapling contribution to total canopy cover |
18 | 18 | #' (Toney et al. 2009). The empirical model for the sapling component also uses |
19 | 19 | #' the spatial point pattern of overstory trees as a predictor variable (using |
20 | | -#' a square root transformation of Ripley's edge-corrected K function, Ripley |
| 20 | +#' a square root transformation of Ripley's edge-corrected K-function, Ripley |
21 | 21 | #' 1977, Stoyan and Penttinen 2000). |
22 | 22 | #' |
23 | 23 | #' Alternatively, TCC can be predicted using a simplified approach that does not |
|
44 | 44 | #' variables. Specific elements of the returned list include some or all of the |
45 | 45 | #' following, conditionally: |
46 | 46 | #' |
47 | | -#' * `model_tcc`: plot-level predicted canopy cover of trees `>= 1` inch |
| 47 | +#' * `$model_tcc`: plot-level predicted canopy cover of trees `>= 1` inch |
48 | 48 | #' (`2.54` cm) diameter, derived by one of the two methods described above |
49 | 49 | #' depending on the value given for argument `stem_map = TRUE|FALSE` |
50 | 50 | #' |
51 | 51 | #' If the stem-map method is used, then TCC values derived by crown overlay |
52 | 52 | #' on the individual subplot and microplot boundaries are included, along with |
53 | 53 | #' means of the four subplot/microplot values: |
54 | 54 | #' |
55 | | -#' * `subpN_crown_overlay`: estimated canopy cover of trees `>= 5-in.` |
| 55 | +#' * `$subpN_crown_overlay`: estimated canopy cover of trees `>= 5-in.` |
56 | 56 | #' (12.7 cm) diameter in subplot `N` based on crown overlay (`N = 1:4`) |
57 | | -#' * `subp_overlay_mean`: mean of the four subplot crown overlays |
58 | | -#' * `micrN_crown_overlay`: estimated canopy cover of saplings in the microplot |
| 57 | +#' * `$subp_overlay_mean`: mean of the four subplot crown overlays |
| 58 | +#' * `$micrN_crown_overlay`: estimated canopy cover of saplings in the microplot |
59 | 59 | #' of subplot `N` based on crown overlay (`N = 1:4`) |
60 | | -#' * `micr_overlay_mean`: mean of the four microplot crown overlays |
| 60 | +#' * `$micr_overlay_mean`: mean of the four microplot crown overlays |
61 | 61 | #' |
62 | 62 | #' A set of spatial point pattern statistics is also included when the stem-map |
63 | 63 | #' method is used. A square root transformation of Ripley's K function using |
|
67 | 67 | #' regression model used to estimate the sapling contribution to total tree |
68 | 68 | #' canopy cover: |
69 | 69 | #' |
70 | | -#' * `L_rft`: Ripley’s L function at `r` feet (`r` = `6`, `8`, `10`, and `12`) |
| 70 | +#' * `$L_rft`: estimates of the L-function at `r` feet (`r` = `6`, `8`, `10`, |
| 71 | +#' and `12`) |
71 | 72 | #' |
72 | 73 | #' If the argument `full_output = TRUE` (the default), then the output will |
73 | 74 | #' also include all of the the named elements from the output of |
|
134 | 135 | #' # using the spatially explicit "stem-map model" by default |
135 | 136 | #' calc_tcc_metrics(plantation) |
136 | 137 | #' |
137 | | -#' # return only the predicted TCC |
| 138 | +#' # return only the predicted TCC value (`$model_tcc`) |
138 | 139 | #' calc_tcc_metrics(plantation, full_output = FALSE) |
139 | 140 | #' |
140 | 141 | #' # using the "FVS method" which assumes random tree locations |
|
0 commit comments