Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. glmer(prescriptions ~ time + ageBase + hospAdmission + (ageBase|id), data, family=poisson)
  2.  
  3. glmer.nb(prescriptions ~ time + ageBase + hospAdmission + (ageBase|id), data)
  4.  
  5. ageCent <- data$agePerYear - round(mean(data$agePerYear))
  6.  
  7. glmer(prescriptions ~ time + hospAdmission + (ageCent|id), data, family=poisson)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement