kernel_param | R Documentation |
The function computes the constant parameters of a dispersal kernel with a negative exponential distribution
kernel_param(p, d_disp, mode = "A")
p |
A numeric value indicating the dispersal probability at a distance equal to 'd_disp' under a negative exponential distribution. |
d_disp |
A numeric value indicating the distance to which dispersal probability is equal to 'p' under a negative exponential distribution. |
mode |
A character string indicating the value to return:
|
If the resulting parameter when mode = "A" is a and the resulting parameter when mode = "B" is b, then we have: p = exp(-a.d_disp) = 10^(-b.d_disp) and a = b.ln(10)
A numeric value
P. Savary
p <- 0.5 d_disp <- 3000 alpha <- kernel_param(p, d_disp, mode = "A")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.