Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. library(psych)
  2. setwd("/Users/Pria/Desktop/Data/")
  3. ##Load data
  4. latency = read.csv("23138xTRP1.csv", header = TRUE)
  5. ##head shows first few lines of data
  6. head(latency)
  7. ##Summary statd
  8. summary(latency)
  9. ##More info on stats
  10. describe(latency)
  11. res.aov2 <- aov(Gal4.UAS ~ Gal4 + UAS, data = latency)
  12. summary(res.aov2)
  13. res.aov3 <- aov(Gal4.UAS.1 ~ Gal4.1 + UAS.1, data = latency)
  14. res.aov3 <- aov(Gal4.UAS.1 ~ Gal4.1 + UAS.1 + Gal4:UAS, data = latency)
  15. summary(res.aov3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement