alittle wrote:cooch wrote:alittle wrote:2) Estimate seasonal survival during the following 4 seasons (1 April–30 June (spring), 1 July–30 September (summer), 1 October–31 December (fall), 1 January–31 March (winter)).
- Since survival was constant, I guess I could just calculate seasonal survival based on the product of the monthly survival estimate above. Would that be correct? If so, is there an easy way to obtain standard errors, lower and upper confidence intervals for the derived estimates (e.g., seasonal and annual)?
I already answered this for you earlier - Delta method -
http://www.phidot.org/software/mark/doc ... /app_2.pdfSimply read the first paragraph, which describes virtually the exact same thing you're after.
Thanks for the assistance! I forgot to add that I was wondering if you could easily do the calculation in RMark coding--seamless process.
I just found what I was looking for in regards to the Delta method....
This example is excluded from testing to reduce package check time
#
# The following are examples only to demonstrate selecting different
# model sets for adjusting chat and showing model selection table.
# It is not a realistic analysis.
#
data(dipper)
mod=mark(dipper,model.parameters=list(Phi=list(formula=~time)))
rr=get.real(mod,"Phi",se=TRUE,vcv=TRUE)
deltamethod.special("prod",rr$estimates$estimate[1:6],rr$vcv.real)
deltamethod.special("cumprod",rr$estimates$estimate[1:6],rr$vcv.real,ses=FALSE)
deltamethod.special("sum",rr$estimates$estimate[1:6],rr$vcv.real)
deltamethod.special("cumsum",rr$estimates$estimate[1:6],rr$vcv.real,ses=FALSE)
Thanks!