Yes I think you are correct to say this is data on an interval scale.
You can test whether or not your data set follows a normal distribution using the The Shapiro-Wilk Normality Test.
This tests whether values (Xi
for i = 1 to n ) follows a normal distribution.
FYI, both your controls and patent data are Normal at the 0.05 level
Now when you do you your independent t-Test on the two smaples you need to ask yourself what you are testing.
1) Mean Ctrl - Mean Patents <> 0 ? i.e. Are the mean ages of the two groups different?
2) Mean Ctrl - Mean Patients > 0 ? i.e. Is the mean age of the Patient group younger than the mean of the Ctrl group?
3) Mean Ctrl - Mean Patients < 0 ? i.e. Is the mean age of the Patient group older than the mean of the Ctrl group?
and of course set your significance level. Each test may have a different outcome as you can see below.
so for #1
Null Hypothesis: Mean1 - Mean2 = 0
Alternative Hypothesis: Mean1 - Mean2 <> 0
t DoF P Value
------------------------------------------------
-1.75305 36 0.08811
------------------------------------------------
At the 0.05 level, the difference of the population means
is not significantly different than the test difference (0).
for #2
Null Hypothesis: Mean1 - Mean2 <= 0
Alternative Hypothesis: Mean1 - Mean2 > 0
t DoF P Value
------------------------------------------------
-1.75305 36 0.95595
------------------------------------------------
At the 0.05 level, the difference of the population means
is not significantly greater than the test difference (0).
For #3
Null Hypothesis: Mean1 - Mean2 >= 0
Alternative Hypothesis: Mean1 - Mean2 < 0
t DoF P Value
------------------------------------------------
-1.75305 36 0.04405
------------------------------------------------
At the 0.05 level, the difference of the population means
is significantly less than the test difference (0).