Advertisement
QwertyAvatar

Untitled

Jun 10th, 2024
599
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.54 KB | None | 0 0
  1. plon1=c(4.5, 4.9, 5.4)
  2. plon9=c(5.2, 5.4, 5.9 )
  3. plon2=c(5.3, 5.5, 5.8 )
  4. plon3=c(4.7, 5.1, 5.8 )
  5. plon4=c(5.6, 6.1, 5.7 )
  6. plon5=c(5.1, 5.0, 5.6)
  7. plon6=c(5.1, 6.0, 5.7 )
  8. plon7=c(5.2, 4.8, 5.5 )
  9. plon8=c(5.2, 5.3, 5.9)
  10. shapiro.test(plon1)
  11. shapiro.test(plon2)
  12. shapiro.test(plon3)
  13. shapiro.test(plon4)
  14. shapiro.test(plon5)
  15. shapiro.test(plon6)
  16. shapiro.test(plon7)
  17. shapiro.test(plon8)
  18. shapiro.test(plon9)
  19. lista=list(plon1,plon2,plon3,plon4,plon5,plon6,plon7,plon8,plon9)
  20. bartlett.test(lista)#wariancje mozna uznac za rowne
  21. boxplot(lista,las=1,col=5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement