I am slowly teaching myself how to use RMark and I have just run the following RDHHet no movement model:
- Code: Select all
#Parameter specifications for model formulas
S.dot=list(formula=~1)
p.session.mixture=list(formula=~session+mixture,share=TRUE)
pi.dot=list(formula=~1)
GammaDoublePrime.zeroTE=list(formula=~1,fixed=0)
GammaPrime.zeroTE=list(formula=~1,fixed=0)
#No movement model w/ constant survival, p=c varies by season (session)
No.mov.mod.5=mark(data=rd.process,
ddl=rd.ddl,
model.parameters=list(
S=S.dot,
p=p.session.mixture,
pi=pi.dot,
GammaDoublePrime=GammaDoublePrime.zeroTE,
GammaPrime=GammaPrime.zeroTE))
In the model output for Real Parameters, parameter p is listed as:
p gFemale s1 t0 m1
p gFemale s1 t0 m2
p gFemale s2 t0 m1
p gFemale s2 t0 m2
p gFemale s3 t0 m1
p gFemale s3 t0 m2
etc etc.....
Firstly, am I correct in assuming the 's' stands for 'session' (i.e., primary period), 't' stands for time (i.e., secondary period which is 0 as I have not specified 'time' in my model)? I am unsure what the m's stand for, are these the mixtures?
Secondly, I have three groups in my dataset (female, male, and unknown sex). Is this output showing me p estimates for the females only, or is it showing p estimates for all individuals in the dataset (as I have not specified group in my parameter specifications in the model) and simply labelling g as female?