I have a dataset on green-up days pan-Arctic and relate this to weather variables.
I therefore want to use a linear mixed effect model where region (e.g. Alaska, Yukon, Northwest Territories, Eastern Siberia etc.) is the random effect, and weather variables are fixed effects. I am looking for, how the weather influences the day of green-up (given in day of the year). I know there is some random effect involved from spatial differences across the Arctic.
library(lme4)
reg.result = lmer(greenup ~ precip+temp+windspeed+relativehumidity+(1+precip+temp+windspeed+relativehumidity|region), data = greenup, REML = F)
I do not want to have variable intercept but fixed slope for each random effect. So I add the term (1+precip+temp+windspeed+relativehumidity|region).
This gives me different intercepts and slopes for each random effect (region).
Alternatively, I could just perform a linear regression per region e.g.
Alaska <- lm(greenup ~ precip+temp+windspeed+relativehumidity, data = AK)
Yukon <- lm(greenup ~ precip+temp+windspeed+relativehumidity, data = YK)
NWT <- lm(greenup ~ precip+temp+windspeed+relativehumidity, data = NWT)
...
ESib <- lm(greenup ~ precip+temp+windspeed+relativehumidity, data = ESib)
My question is then, why would I not just make multiple different linear regressions for each region and thereby take out this random effect myself?
Would it give me a different result?