pf_setup_movement_pr | R Documentation |
This function provides a simple movement model that calculates the probability of movement between two locations according to the distance between them, using an logistic equation with pre-defined parameters.
pf_setup_movement_pr(distance, ...)
distance |
A numeric vector of distances (m). |
... |
Additional arguments (none implemented). |
Under this model, for distance(s) \leq 500
m, Pr(distance) = logistic(10 + distance -0.05)
; otherwise, Pr(distance) = 0
. This particular model is designed for flapper skate (Dipturus intermedius) and represents a reasonable model for the probability of moving a given distance in a two-minute period (in the absence of additional information).
The function returns a numeric vector of probabilities that represent the probability of movement between two or more areas given the distances between them.
Edward Lavender
This function is used as the default movement model in pf
.
pr <- pf_setup_movement_pr(1:1000)
plot(pr, type = "l", xlab = "Distance (m)", ylab = "Pr(distance)")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.