R/BlairLacy.R

Defines functions BlairLacy

Documented in BlairLacy

BlairLacy <- function(V) {
# measure of concentration, Blair & Lacy 2000, "l"
# argument: V=frequency vector
d <- dsquared(V)^0.5
k <- length(V)
dmax <- ((k-1)/4)^0.5
return(d/dmax)
}

Try the agrmt package in your browser

Any scripts or data that you put into this service are public.

agrmt documentation built on Jan. 5, 2024, 3:01 a.m.