R/LWR.R

Defines functions LWR

Documented in LWR

#' @title  Estimate biovolume with Length-width Relationship
#' @description Estimate the biovolume of individuals with a published shapeless conversion factors.
#'
#' @param Length Length of an organism
#' @param Width Width of an organism
#' @param Conversion_factor Shapeless conversion factor. For available conversion factors,
#'                          please see Fellwe & Warwick (1998).
#'
#' @return
#' @export
#'
#' @examples
#' LWR(10, 20, 0.5)
LWR <- function(Length, Width, Conversion_factor) {
  Length * Width * Width * Conversion_factor
}
chenyenting1998/ecomaestro documentation built on Dec. 19, 2021, 3:04 p.m.