How can I extract the real parameter estimates from an secr model? Using predict() the estimates show up, but I would like get the density estimates as a vector or dataframe.
- Code: Select all
secr0 <- secr.fit(CH, model = list(D~g, g0~1, sigma~1) ,groups='Loc_Name',buffer = 150,
trace = FALSE,start = list(D=1, g0=0.2, sigma=25) ) # null model
- Code: Select all
> predict(secr0)
$`session = 2004, g = HabRest_Mam_001`
link estimate SE.estimate lcl ucl
D log 0.1508709 0.04601342 0.0840915 0.2706818
g0 logit 0.3868580 0.09752501 0.2198769 0.5854789
sigma log 42.9765246 2.03021032 39.1780622 47.1432623
$`session = 2004, g = HabRest_Mam_002`
link estimate SE.estimate lcl ucl
D log 0.01257256 0.01655166 0.001761587 0.08973115
g0 logit 0.38685802 0.09752501 0.219876950 0.58547885
sigma log 42.97652456 2.03021032 39.178062200 47.14326231
What I want to do is extract the estimates of the real parameters (D,g0,and sigma) from the model secr0.
Thanks for any help.