I am doing an analysis of understanding human-wildlife conflict due to depredation of livestock by large predators.
I gathered data by participatory mapping for livestock and conflict areas. I converted my data in detection-non-detection format.
My specific research question is whether there are any spatial covariates that can help me to understand patterns of livestock depredation, while livestock does not use all the habitat equally.
I selected two site covariates (NDVI, distance to PA) that are weakly correlated (R² = 0.17). Further I use one survey covariate (area covered by interviewee). All covariates are z-transformed.
I am using a two-species model to estimate conflict. The precondition is that the site must be used by livestock, which is where it helps to estimate uncertain presence of livestock.
I tested several model configurations and selected the best performing model according to the AIC
- Code: Select all
LS_CF.7a <-occMod(model= list(psi~SP+INT+NDVI.z+dist_PA.z,p~area.z),
data=LS.CF.pao,
type="so.2sp.1",
param="psiBA")
While the beta estimators seems to be reasonable, I observe an extremely large standard error:
- Code: Select all
coef(Top.LS.CF,"psi")
Beta_est se
A1_psiA 6.653216 2.407160e+00
A2_psiBA 23.624411 5.084240e+04
A3_psiBa -99.399756 2.756793e+06
A4_psiA.NDVI.z_psiA -1.445936 8.183640e-01
A5_psiA.dist_PA.z_psiA 3.364343 1.940491e+00
coef(Top.LS.CF,"p")
Beta_est se
B1_pA[1] 1.193677 0.080211
B2_pB[1] -1.773291 0.105345
B3_pA[1].area.z_pA 0.542757 0.053497
The fitted values for PsiA (i.e. probability of livestock) do make sense in a way:

But for PsiBA (i.e probability of conflict when livestock is present) all fitted values are 1 with a SE of 0


Am I on the right track and are there any guesses, why I do not get reasonable results?
Thank you for your help and all the best,
Kristina