## load the data
data(mtcars)
## recode
mpg_auto <- mtcars$mpg[mtcars$am == 0]
mpg_manual <- mtcars$mpg[mtcars$am == 1]
#Perform a two-sample t-test
t_test_result <- t.test(mpg_auto, mpg_manual, alternative = "two.sided", var.equal = FALSE)
t_test_result
Welch Two Sample t-test
data: mpg_auto and mpg_manual
t = -3.7671, df = 18.332, p-value = 0.001374
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-11.280194 -3.209684
sample estimates:
mean of x mean of y
17.14737 24.39231