Dear Xinzhu,
as for 1: P* is a function of the model parameter p, for which you are given a SE in the output when you fit the model. To compute the SE of that function, you could use the so-called delta rule or a sort of parametric bootstrap. For the example given in the
help text of the 'occu' function in unmarked, below is some code for the latter solution, where, after fitting the model, the MLE and its SE for the detection intercept are -1.939 and 0.166.
as for 2: yes (of course !), only that the colo and ext parameters in the output are given on the logit scale. So to get to a probability you have to plogis() them (and to get to a percentage, further multiply by 100).
as for 3: you ask about the probability to detect a species that occurs somewhere in a study area. This is not equal to the detection probability in the occupancy model, which in a camtrap study is the probability to detect the species at an occupied trap location.
Obviously, detection prob in the occupancy model at a site is not affected by how many other traps you have in the area, but the former probability is affected by this. I think it will be a function of both occupancy and detection probability. I can't remember
whether this problem has been dealt with in the literature, but I'd be surprised if it was not.
Best regards — Marc
# Get SE for Pstar from the MLE of p and its SE using a form of parametric bootstrap
# Draw 100000 samples from the normal distribution centered on the MLE and with SD = SE (repeat 3 times, once for each occasion)
lp1 <- rnorm(10^5, mean = -1.939, sd = 0.166) # Logit scale
lp2 <- rnorm(10^5, mean = -1.939, sd = 0.166)
lp3 <- rnorm(10^5, mean = -1.939, sd = 0.166)
# Convert to probability scale
p1 <- plogis(lp1) ; p2 <- plogis(lp2) ; p3 <- plogis(lp3)
# Apply function for aggregate detection prob P* to each draw
Pstar <- 1 - (1 - p1)*(1 - p2)*(1 - p3)
# Plot sampling distribution of Pstar and get its mean and SD. Latter is the SE of Pstar
hist(Pstar) ; mean(Pstar) ; sd(Pstar)