Question: For a Student's t - distribution with mean 0 , standard deviation 1 , and degrees of freedom 4 9 , which of the following

For a Student's t-distribution with mean 0, standard deviation 1, and degrees of freedom 49, which of the following Python lines outputs the probability P(t>0.115)?
Select one.
import scipy.stats as st
print(st.t.sf(0.115,49,0,1))
import scipy.stats as st
print(st.t.cdf(0.115,49,0,1))
import scipy.stats as st
print(st.t.ppf (0.115,49,0,1)
import scipy.stats as st
print(st.t.pdf (0.115,49,0,1))
 For a Student's t-distribution with mean 0, standard deviation 1, and

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!