Advertisement
Guest User

Untitled

a guest
Nov 16th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. #laby 16.11
  2.  
  3.  
  4. #1
  5.  
  6. pnorm(27.5, 22, 5)-pnorm(16.2, 22, 5)
  7.  
  8. 1-pnorm(29, 22, 5)
  9.  
  10. pnorm(17, 22, 5)
  11.  
  12. pnorm(15, 22, 5)+1-pnorm(25, 22, 5)
  13.  
  14.  
  15. #2
  16.  
  17. dbinom(20, 60, .5)+dbinom(25, 60, .5)+dbinom(30, 60, .5)
  18.  
  19. pbinom(19, 60, .5)
  20.  
  21. dbinom(30, 60, .5)- dbinom(19, 60, .5)
  22.  
  23.  
  24. #3
  25.  
  26. ppois(4,7)
  27.  
  28. 1-ppois(10,7)
  29.  
  30. ppois(16,7)-ppois(3,7)
  31.  
  32.  
  33. #4
  34.  
  35. sample1<-runif(100)
  36. hist(sample1)
  37. qqnorm(sample1)
  38. qqline(sample1, col = 2)
  39.  
  40. sample2<- rt(100,4)
  41. qqnorm(sample2)
  42. qqline(sample2)
  43.  
  44. sample3<-rt(100,100)
  45. qqnorm(sample3)
  46. qqline(sample3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement