Advertisement
jjdeharo

#Estudio de la relación entre las horas dedicadas a la TV y

May 2nd, 2015
312
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.48 KB | None | 0 0
  1. # Estudio de la relación entre las horas dedicadas a la TV y el coeficiente de inteligencia
  2.  
  3. ci <- c(106,86,100,100,99,103,97,113,113,110)
  4. tv <- c(7,0,28,50,28,28,20,12,7,17)
  5. datos <- data.frame(ci,tv)
  6.  
  7. # Test de normalidad
  8. ci.sh <- shapiro.test(datos$ci)
  9. print(ci.sh)
  10.  
  11.  
  12. tv.sh <- shapiro.test(datos$tv)
  13. print(tv.sh)
  14.  
  15. # Correlación
  16. corr <- cor.test(datos$tv,datos$ci)
  17. print(corr)
  18. plot(datos,main="Relación entre horas de tv y el CI",xlab="CI",ylab="Horas semanales tv")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement