How to find critical values and p-values from the t-distribution
Description
If we have a test statistic and need to find the corresponding p-value from the t-distribution, how do we do that? If we need to find a p-value from the t distribution, given that we know the significance level and degrees of freedom, how do we do that?
Related tasks:
Solution, in Julia
If we choose a value quantile()
function in Julia’s Distributions package.
If you don’t have that package installed, first run using Pkg
and then
Pkg.add( "Distributions" )
from within Julia.
The code below shows how to do this for left-tailed, right-tailed, and two-tailed hypothesis tests.
1
2
3
4
5
using Distributions
alpha = 0.05 # Replace with your alpha value
n = 68 # Replace with your sample size
tdist = TDist( n - 1 )
quantile( tdist, alpha ) # Critical value for a left-tailed test
-1.6679161141074252
1
quantile( tdist, 1 - alpha ) # Critical value for a right-tailed test
1.6679161141074252
1
quantile( tdist, alpha / 2 ) # Critical value for a two-tailed test
-1.996008354025297
We can also compute
We can find the cdf()
function
in Julia’s Distributions package.
Again, we show code for left-tailed, right-tailed, and two-tailed tests.
1
2
test_statistic = 2.67 # Replace with your test statistic
cdf( tdist, test_statistic ) # p-value for a left-tailed test
0.9952454518351646
1
1 - cdf( tdist, test_statistic ) # p-value for a right-tailed test
0.004754548164835448
1
2 * ( 1 - cdf( tdist, test_statistic ) ) # p-value for a two-tailed test
0.009509096329670896
Content last modified on 24 July 2023.
See a problem? Tell us or edit the source.
Solution, in R
If we choose a value qt()
function. The code below shows how to do this for left-tailed,
right-tailed, and two-tailed hypothesis tests.
1
2
3
4
5
alpha <- 0.05 # Replace with your alpha value
n <- 68 # Replace with your sample size
qt(p = alpha, df = n-1, lower.tail = TRUE) # Critical value for a left-tailed test
qt(p = alpha, df = n-1, lower.tail = FALSE) # Critical value for a right-tailed test
qt(p = alpha/2, df = n-1, lower.tail = FALSE) # Critical value for a two-tailed test
[1] -1.667916
[1] 1.667916
[1] 1.996008
We can also compute
We can find the pt()
function.
We will use the same example sample size as above.
Again, we show code for left-tailed, right-tailed, and two-tailed tests.
1
2
3
4
5
test_statistic <- 2.67 # Replace with your test statistic
n <- 68 # Replace with your sample size
pt(test_statistic, df = n-1, lower.tail = TRUE) # p-value for a left-tailed test
pt(test_statistic, df = n-1, lower.tail = FALSE) # p-value for a right-tailed test
2*pt(test_statistic, df = n-1, lower.tail = FALSE) # p-value for a two-tailed test
[1] 0.9952455
[1] 0.004754548
[1] 0.009509096
Content last modified on 24 July 2023.
See a problem? Tell us or edit the source.
Topics that include this task
Opportunities
This website does not yet contain a solution for this task in any of the following software packages.
- Python
- Excel
If you can contribute a solution using any of these pieces of software, see our Contributing page for how to help extend this website.