I am trying to estimate c for my global model, which I have now learned has to be more complicated than originally anticipated.
I have tried no groups, using only sex as a group but after making better biological predictions I want to run RELEASE on the model : Phi(time.sex.age) p(time.sex.age)
Hopefully this will results in a c<3, which until the moment seem impossible.

In the model I would like to have age binned into 4 age classes:
pups(<1yrs old)
Jjuvs(1-4 yrs old)
young adults (5-8 yrs old)
old adults(9+ yrs old)
There are 11 encounter occasions (1987-1997), each occasion = 1 year of age, and all individuals where marked at age 0.
I have tried to design the data and model and export ch data from RMark, inserted the .inp file, appended the marknnnY.tmp file for the model (all of this worked) and have tried to run RELEASE in MARK.
Something must be wrong with my code, because RELEASE output shows high oversdispersion (c=22.174!!)and revising it thouroughly, my age classes are not there. It seems to only consider Phi(sex*time)p(sex*time) and not the age classes I made in the ddl.
I have revised Appendix C of Mark book, RMark Workshop notes 20099, html help and still struggling.
Below is the code, I would really, really appreciate a hand.
Thanks in advance!
-Susana
##
CJS.proc=process.data(xx, model="CJS", groups="sex", begin.time=1987, age.unit=1)
surv.ddl=make.design.data(CJS.proc)
surv.ddl=add.design.data(CJS.proc,surv.ddl,parameter="Phi",type="age",bins=c(0,1,4,8,10),name="agebin",replace=TRUE)
surv.ddl=add.design.data(CJS.proc,surv.ddl,parameter="p",type="age",bins=c(0,1,4,8,10),name="agebin",replace=TRUE)
levels(surv.ddl$Phi$agebin)=c("Pups","Juveniles","Young Adults","Old Adults")
levels(surv.ddl$p$agebin)=c("Pups","Juveniles","Young Adults","Old Adults")
Phi.time.sex.age=list(formula=~time*sex*agebin)
p.time.sex.age=list(formula=~time*sex*agebin)
my.global.model=mark(CJS.proc,surv.ddl,model.parameters=list(Phi=Phi.time.sex.age,p=p.time.sex.age))
export.chdata(CJS.proc,"global")
export.model(my.global.model)
##