| getprobsCJS | R Documentation |
This function calculates posterior capture (p) and survival (φ) probabilities for each sampling occasion from multimarkCJS output.
getprobsCJS(out, link = "probit")
out |
List of output returned by |
link |
Link function for p and φ. Must be " |
An object of class mcmc.list containing the following:
p |
Posterior samples for capture probability (p[c,t]) for each release cohort (c=1,…,T-1) and sampling occasion (t=2,…,T). |
phi |
Posterior samples for survival probability (φ[c,k]) for each release cohort (c=1,…,T-1) and interval (k=1,…,T-1). |
Brett T. McClintock
multimarkCJS
# 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)