Page 1 of 1

initial arguement in combination with retry in function mark

PostPosted: Mon Aug 22, 2011 5:52 pm
by tommyg
I'm working with a dataset right now that has consistently small recapture probabilities ( ~ 0.01 - 0.04). To help the optimization routine in MARK I first supply initial starting values to the mark function, but also specify the retry argument, because a number of the parameters are still unidentifiable with my ballpark starting values. So the question is does the initial argument overwrite the values that would have been obtained by specifying the retry argument? I want to make sure that the same initial values aren't be used for the 1st, 2nd, . . . iteration of the mark function calls.

Code: Select all
mark(data.proc, data.ddl, initial=init, retry=2, . .


Thanks.

Re: initial arguement in combination with retry in function

PostPosted: Mon Aug 22, 2011 6:00 pm
by jlaake
If retry is set, it uses final values from previous run except that it sets all singular betas to 0. --jeff

Re: initial arguement in combination with retry in function

PostPosted: Mon Aug 22, 2011 6:02 pm
by jlaake
If retry is set, it uses final values from previous run except that it sets all singular betas to 0. --jeff

Re: initial arguement in combination with retry in function

PostPosted: Mon Aug 22, 2011 6:04 pm
by tommyg
That's what I assumed, but just wanted to double check.

Thanks.