I am currently running a single season model using occu() function. I have created a suite of models and used modSel() to pick the top ranking AIC model. I am now interested in exploring that specific model in more detail. Specifically I am curious about the significance of each covariate within the model. Here is the summary output form my top ranking model...
Call:
occu(formula = ~dist + method + dsls ~ habitat + snow, data = wt)
Occupancy:
Estimate SE z P(>|z|)
(Intercept) -0.316 0.387 -0.816 0.41428
habitatShrub 0.504 0.465 1.085 0.27804
habitatTundra -1.622 0.609 -2.664 0.00773
snow -0.463 0.231 -2.005 0.04498
Detection:
Estimate SE z P(>|z|)
(Intercept) -0.279 0.421 -0.661 5.08e-01
dist 0.803 0.176 4.570 4.87e-06
methodtransect -1.189 0.486 -2.448 1.44e-02
dsls 0.243 0.136 1.789 7.36e-02
AIC: 564.0724
How should I interpret the P values for individual covariates and what exactly is the z score that is given? In addition, are there other techniques that are commonly used to test model fit? I have tried parboot() but am not entirely sure how to interpret that data either. Clearly I have some stats to brush up on, but any help to get me pointed in the right direction would be much appreciated!
Casey