Guest User

Untitled

a guest
Oct 23rd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. xxlmer <- lmer(Us ~ App + Hed + (1|Category), data = dataset)
  2.  
  3. coefs <- data.frame(coef(summary(xxlmer )))
  4. # use normal distribution to approximate p-value
  5. coefs$p.z <- 2 * (1 - pnorm(abs(coefs$t.value)))
  6. coefs
  7.  
  8. Estimate Std..Error t.value p.z
  9. (Intercept) 2.9044048 0.49348777 5.8854646 3.969374e-09
  10. App1 0.1600932 0.21344810 0.7500335 4.532345e-01
  11. App3 0.3825582 0.20096127 1.9036414 5.695690e-02
  12. Hed 0.3417938 0.09047678 3.7776961 1.582858e-04
Add Comment
Please, Sign In to add comment