Skip to content
Coming soon: Ally. Your guide to the world of AI and R. Learn More →
R for the Rest of Us Logo

Inferential Statistics with R

Dependent t-test

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.

Your Turn

  1. Perform a dependent samples t-test to test whether there is a difference in exam scores: exam_1 and exam_2. Is there a difference? What is the p-value?

  2. Perform a dependent samples t-test to test whether there is a difference in act_science and act_mathematics scores. 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.