I am running a robust design analysis in Rmark with 12 primary periods and 53 secondary periods (secondary occasions varying from 2 to 7). Samples were collected every three months, except for two occasion, one with six month interval and another one with 12 month interval.
And this is how I am setting my time intervals on RMark:
- Code: Select all
#Process data specifying primary and secondary capture occasions
time.intervals=c(0,0,0,0,0,3,0,0,3,0,3,0,0,0,3,0,0,0,0,0,3,0,0,0,0,3,0,0,0,0,12,0,0,0,3,0,0,0,0,0,3,0,0,3,0,0,6,0,0,0,0,0)
rd.process=process.data(rd.data,begin.time=1,model="Robust",time.intervals=time.intervals)
If I understood well from a post on this forum, the survival rates are corrected for this unequal time intervals, meaning that if I run a model with phi(year), I should get an estimate for each one of the four years of my study period, right?
For example,the following model:
S(~Year)Gamma''(~Year)Gamma'(~season)p(~-1 + session:time)c()f0(~session)
Parameter Estimate Standard Error Lower Upper
-------------------------- -------------- -------------- -------------- --------------
1:S g1 c1 c1 a0 t1 0.9799760 0.0067555 0.9614259 0.9897010
2:S g1 c1 c1 a12 t13 0.9925958 0.0027449 0.9847264 0.9964254
3:S g1 c1 c1 a30 t31 0.9972842 0.0022175 0.9866292 0.9994531
4:S g1 c1 c1 a36 t37 0.9990069 0.0012978 0.9872554 0.9999234
The survival times t1, t13, t31 and t37 match the beginning of each year,2006, 2007, 2008 and 2009?
Using the previous models, I get these gamma" estimates
5:Gamma'' g1 c1 c1 a0 0.4978534 0.0715431 0.3613535 0.6346741
6:Gamma'' g1 c1 c1 a12 0.3038718 0.0540613 0.2091856 0.4187238
7:Gamma'' g1 c1 c1 a30 0.1612076 0.0531546 0.0816796 0.2934269
8:Gamma'' g1 c1 c1 a36 0.0780162 0.0425256 0.0258719 0.2123465
Could I interpret this as that gamma" decrease from year 1 to 4 (0.49 to 0.07)?
Thanks
Sergi