getprobsCJS {multimark} | R Documentation |
Calculate posterior capture and survival probabilities
Description
This function calculates posterior capture (p
) and survival (\phi
) probabilities for each sampling occasion from multimarkCJS
output.
Usage
getprobsCJS(out, link = "probit")
Arguments
out |
List of output returned by |
link |
Link function for |
Value
An object of class mcmc.list
containing the following:
p |
Posterior samples for capture probability ( |
phi |
Posterior samples for survival probability ( |
Author(s)
Brett T. McClintock
See Also
Examples
# This example is excluded from testing to reduce package check time
# Example uses unrealistically low values for nchain, iter, and burnin
#Simulate open population data with temporal variation in survival
noccas <- 5
data <- simdataCJS(noccas=noccas, phibeta=rnorm(noccas-1,1.6,0.1))
#Fit open population model with temporal variation in survival
sim.time <- multimarkCJS(data$Enc.Mat,mod.phi=~time)
#Calculate capture and survival probabilities for each cohort and time
pphi <- getprobsCJS(sim.time)
summary(pphi)
[Package multimark version 2.1.6 Index]