I'm using sampling grids as a group to get grid specific density estimates by year. In other words, I'm, trying estimate density at each sampling location. This works really well except when individuals have the audacity to move between grids. Some of these inter-grid movements are real. Marked individuals were recaptured on another grid. Some of them are the result of tag redundancy.
So two questions here:
1. When a marked individual is recaptured on another grid (using grid as a group to get density estimates for each grid), the models break down and return an estimate of 'NA'. I don't think the models can handle movement between grids when grid is a group. If this is true, what should I do? Would it be OK to relabel the 'offending' individuals to remove the intergrid movements from the model?
- Code: Select all
secr.fit(CH, model = list(D~g, g0~1, sigma~1) ,groups=c('Loc_Name'),buffer = 150,
trace = FALSE,start = list(D=0.5, g0=0.2, sigma=25) ) # null model
2. I'm using 'plot.capthist' with tracks=T to identify individuals that move between grids. This is a big help to identify the locations where the movements occur. If I figure out how to post images here I can give an example.Beyond this, is there a way to select individuals that move between grids? I don't really expect a detailed answer here. Just some general advice.
Thank you.