I am trying to model movement between observable and unobservable states using the gamma parameters in a robust design model. I understand the basic concepts behind the alternative models ("no movement", "random emigration", "Markovian movement", "even flow") as explained in Cooch and White, but I'm not confident that I'm coding them correctly in RMark. The code I've included below is based on the ?robust example. In particular, I'm not sure how to set gamma''=(1-gamma') in the "even flow" model. Any help on how to code these alternative models would be appreciated.
Ben VanderWeide
Division of Biology
Kansas State University
[code]
# "No Emigration" - set Gamma'' = Gamma' = zero
GammaDoublePrime.GammaPrime.nomove=list(GammaDoublePrime=list(formula=~1,fixed=0,share=TRUE), GammaPrime=list(formula=~1,fixed=0,share=TRUE))
#"Random Emigration" model - set Gamma'' = Gamma'
GammaDoublePrime.random=list(formula=~1,share=TRUE)
# Markov constant emigration rate
GammaDoublePrime.GammaPrime.markov=list(GammaDoublePrime=list(formula=~1),GammaPrime=list(formula=~1))
[\code]