In this technical assignment, you will have the opportunity to apply the statistical knowledge that you’ve learned so far. The assignment will require you to use R Studio. We recognize that doing both of these things may be new to you, so please make sure to ask your Lab TA, lecture TA, or Dr. Woodward any questions that may come up. Though the assignment is not due until Friday, it is strongly recommended that you start the assignment before then.
#insert code here
pnorm(1.5)
## [1] 0.9331928
2.What is the probability of obtaining a standard score of 1.5 or higher?
#insert code here
1- pnorm(1.5)
## [1] 0.0668072
#insert code here
set.seed(0)
number <- rnorm(1000)
distribution <- data.frame(number)
1- pnorm(-3.59624413146)
## [1] 0.9998386
#insert code here
set.seed(0)
number <- rnorm(100)
distribution <- data.frame(number)
1- pnorm(-3.29017857143)
## [1] 0.9994994
#insert code here
-1.96
## [1] -1.96
#insert code here
1.96
## [1] 1.96