I couldn't understand how to properly use t.ppf, could someone please explain it to me?
I have to use this information
- scipy.stats.t
- scipy.stats
- a mean of 100
- a standard deviation of 0.39
- N = 851 (851 samples)
When I'm asked to calculate the (95%) margin of error using t.ppf() will the code look like below?
cutoff1 = t.ppf(0.05,100,0.36,850)
Can somebody help me, please?