Description Usage Arguments Value Author(s) Examples
Computes the observation matrix for each action : manage, survey and stop. State 1 : extant, state 2 : extinct. Observation 1 : seen, observation 2 : not seen.
1 | obs(p0, pm, d0, dm, ds, V, Cm, Cs)
|
p0 |
Local probability of persitance : P(extant/extant, survey or stop). |
pm |
Local probability of persitance if manage : P(extant/extant, manage). |
d0 |
Local probability of detection : P(present/extant, stop). |
dm |
Local probability of detection : P(present/extant, manage). |
ds |
Local probability of detection if survey : P(present/extant, survey). |
V |
Estimated economic value of the species ($/yr). |
Cm |
Estimated cost of managing ($/yr). |
Cs |
Estimated cost of survey ($/yr). |
Array, dimensions = [2,2,3], one matrix of dimensions 2,2 per action (manage, survey, stop, in that order). For each matrix : rows = states, cols = observations
Luz Pascal
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
#values for Sumatran tigers
pen <- 0.1
p0 <- 1-pen
pem <- 0.05816
pm <- 1 - pem
V <- 175.133
Cm <- 18.784
Cs <- 10.840
d0 <- 0.01
dm <- 0.01
ds <- 0.78193
o <- smsPOMDP::obs(p0, pm, d0, dm, ds, V, Cm, Cs)#observation matrix
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.