I need to determine the critical t values for one-sided tails of 75% and 99%, for 40 degrees of freedom.
The following is code for a two-sided 99% critical t values:
qt(0.01, 40)
but how can I determine for a one-sided critical t value?
|
I need to determine the critical t values for one-sided tails of 75% and 99%, for 40 degrees of freedom. The following is code for a two-sided 99% critical t values:
but how can I determine for a one-sided critical t value? |
|||
|
The code you posted gives the critical value for a one-sided test (see here. Hence the answer to you question is simply:
Note that the t-distribution is symmetric. For a 2-sided test (say with 99% confidence) you can use the critical value
|
||||
|
|
|
Josh's comments are spot on. If you are not super familiar with critical values I'd suggest playing with qt, reading the manual (
|
|||||
|
qt(0.01, 40)is the critical value for the two-sided test? I'd suggest reading?qt, and then thinking a bit more about what one- and two-sided tests mean. – Josh O'Brien Jul 17 '12 at 15:46