I would like to test if two means are significantly different from each other. I am using R and I do this:
t.test(SampleA,SampleB)
and I get output that looks like:
Welch Two Sample t-test
data: SampleA and SampleB
t = -4.4195, df = 84.117, p-value = .0197
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
-16.214653 -6.160959
sample estimates:
mean of x mean of y
6.44 18.25
My conclusion is that the means are significantly different because the p-value is < .025. I am using .025 as comparison because this is a two tailed test at the 95% confidence level. Is my conclusion correct?
Also - can you explain when to use a paired t-test. The test above is not a paired t test.