Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. > lstrends(m1s, ~Type, var="Var", adjust = "tukey", transform="response")
  2. Type Var.trend SE df asymp.LCL asymp.UCL
  3. A -0.0289 0.00344 Inf -0.0357 -0.0222
  4. B 0.0358 0.00344 Inf 0.0290 0.0425
  5. C 0.0704 0.00298 Inf 0.0645 0.0762
  6.  
  7. Trends are obtained after back-transforming from the logit scale
  8. Confidence level used: 0.95
  9.  
  10. > df <- transform(df, sVar = scale(Var))
  11. > m1pre.s <- glmer(cbind(y, notY) ~ Type * sVar + (1|ID),
  12. + data=df, family=binomial)
  13.  
  14. > lstrends(m1pre.s, ~Type, var="sVar", adjust = "tukey", transform="response")
  15. Type sVar.trend SE df asymp.LCL asymp.UCL
  16. A -0.0334 0.00396 Inf -0.0411 -0.0256
  17. B 0.0412 0.00396 Inf 0.0335 0.0490
  18. C 0.0812 0.00344 Inf 0.0744 0.0879
  19.  
  20. Trends are obtained after back-transforming from the logit scale
  21. Confidence level used: 0.95
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement