#' Lorimer's Competition Zone Radius - Lorimer 1983
#'
#' @param k constant, usually 0.4
#' @param n number of trees per hectare
#'
#' @return value of competition zone radius
#'
#' @details Estimates the competition zone radius, based on the number of
#' trees per hectare in the plot multiplied by a constant (\eqn{k}).
#'
#' @references Lorimer, C. G. (1983). Tests of age-independent competition
#' indices for individual trees in natural hardwood stands. Forest Ecology and
#' Management. Volume 6. Pages 343-360.
#'
#' @examples
#' data(bicuar)
#' lorimerCZR(1, nrow(bicuar))
#'
#' @export
#'
lorimerCZR <- function(k, n) {
k * sqrt(10000 / n)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.