Advertisement
Guest User

Untitled

a guest
May 27th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. fit = lm(time~cyan)
  2. histogram(~residuals(fit)|cyan,type = "density") #lattice library
  3.  
  4. qqnorm(residuals(fit))
  5. qqline(residuals(fit))
  6.  
  7. t.test(time~cyan,mu=0,alt = "two.sided",conf = 0.95,var.eq = T,paired = F)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement