Question: 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? Select
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? Select one.
Question 3 options:
import scipy.stats as st
print(st.t.sf(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))
import scipy.stats as st
print(st.t.cdf(0.115, 49, 0, 1))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
