t.test vs hand calc confidence intervals discrepency

Hi Guys,

Thank you in advance. Could anyone explain why my lecturers calculation for 99% confidence intervals

Does not equate to R's function:

t.test(study$Questions, conf.level = 0.99)

Which gives:

data:  study$Questions
t = 78.112, df = 122, p-value < 2.2e-16
alternative hypothesis: true mean is not equal to 0
99 percent confidence interval:
 47.36637 50.64989
sample estimates:
mean of x 
 49.00813 

Any help on this matter greatly appreciated!

Your instructor used the normal distribution rather than the t-distribution.

Hi,

Thanks for your response, so knowing that is there a shorter way to calculate the confidence intervals using normal distribution similar to that of the t distribution?

Not sure, but see if z.test() does what you need.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.