Unmarked users,
I am using the gpcount function to model density from river bird count data sampled during a mostly visual survey where the observer stands in the same location on the river bank and counts birds in the same section of river for 20 minutes (within each five minute period, newly arriving and prior birds are distinguished), every two weeks in the spring and fall and every three weeks in the summer and winter, with four years of data. I’m developing single species, single season models with observation and site covariates. I’m specifying offset variables to account for variation in the size of the survey area, such as for an obscovs model (presence of rock perches):
rock01.nb <- gpcount(~offset(log(AREAHA)), ~1, ~scale(JULIAN)+ROCK01, baeaumf, K=40, control=list(trace=TRUE, REPORT=1), mixture = "NB")
or sitecovs model (presence of a dam):
dam01.nb <- gpcount(~DAM01+offset(log(AREAHA)), ~1, ~scale(JULIAN), baeaumf, K=40, control=list(trace=TRUE, REPORT=1), mixture = "NB")
I was following the mink frog, Ch. 6 example (https://sites.google.com/site/hierarchicalmodelingcourse/home/r-scripts)
where area is used both as covariate and an offset. I was recently told that this is incorrect to do. When would it be appropriate to include as a covariate and when would it not be?
This is how I was incorporating area into the model:
areaha.nb <- gpcount(~scale(AREAHA)+offset(log(AREAHA)), ~1, ~scale(JULIAN), baeaumf, K=40, control=list(trace=TRUE, REPORT=1), mixture = "NB")
global.site.nb <- gpcount(~BRIDGE01+TRIB01+TIDAL01+DAM01+scale(RIVKM)+scale(R3D)+scale(R1FC)+scale(R1WT)+offset(log(AREAHA)), ~1, ~scale(JULIAN), baeaumf, K=40, control=list(trace=TRUE, REPORT=1), mixture = "NB")
Thank you for any insights!
Erynn
--
You received this message because you are subscribed to the Google Groups "unmarked" group.
To unsubscribe from this group and stop receiving emails from it, send an email to unmarked+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
--
You received this message because you are subscribed to a topic in the Google Groups "unmarked" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/unmarked/nvjjFujJSYY/unsubscribe.
To unsubscribe from this group and all its topics, send an email to unmarked+u...@googlegroups.com.