Question: For a Normal distribution with mean 0 and standard deviation 1 , which of the following Python lines outputs the probability Probability that x is

For a Normal distribution with mean 0 and standard deviation 1, which of the following Python lines outputs the probability Probability that x is between -0.15 and 1.88? Select one.
Question 1 options:
import scipy.stats as st
print(st.norm.cdf(1.88,0,1)- st.norm.cdf(-0.15,0,1))
print(st.norm.cdf(1.88,0,1)- st.norm.cdf(-0.15,0,1))
import scipy.stats as st
print(st.norm.pdf(1.88,0,1)- st.norm.pdf(-0.15,0,1))
import scipy.stats as st
print(st.norm.cdf(1.88,0,1))

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!