Dependent t-test
This lesson is called Dependent t-test, part of the Inferential Statistics with R course. This lesson is called Dependent t-test, part of the Inferential Statistics with R course.
Transcript
Click on the transcript to go to that point in the video. Please note that transcripts are auto generated and may contain minor inaccuracies.
Loading transcript...
Your Turn
Perform a dependent samples t-test to test whether there is a difference in exam scores:
exam_1andexam_2. Is there a difference? What is the p-value?Perform a dependent samples t-test to test whether there is a difference in
act_scienceandact_mathematicsscores. Is there a difference? What is the p-value?
Don’t forget: You’ll need to make your data long before running your t-test.
Learn More
We are using the rstatix package for the t_test() function (and other functions in later lessons). We use this package because it is tidyverse-friendly while some base R functions for inferential statistics are not. If you did want to use the base R equivalent function for a t-test, it is t.test().
For the dependent t-test using the t_test() function, you need to pivot the data set from wide to long using the pivot_longer() function in the tidyr package. Read this vignette for more information on the new pivoting functions.
Course Content
21 Lessons