Hello,
I am trying to model the effect of weather variables on bat activity
(passes/hour) over three years and multiple geographic locations.
Specifically, the effects are:
Fixed = temperature, wind speed, wind direction, pressure,
precipitation, relative humidity
Random = year, week, detector, hour
(Within each year there were multiple detectors recording bat
activity, and these detectors (locations) changed each year).
I started out using glmer() in lme4, with the following code:
LACI.model.8 <-
glmer(LACI~AvgTemp+AvgSpeed+AvgDirection+Pressure+
Precip+RH+(1|year)+(1|weeks_July1)+(1|detector)+(1|GMT_hour),
data=allbatwxstd, family=poisson)