BCB744 Task F

Assessment Sheet

7. t-Tests

Question 1

Please report back on Task F.1 presented in the lecture. Write up formal Methods and Results sections. (/15)

Answer

Question 2

Please refer to the two-sided two-sample t-test in the lecture.. It is recreated here:

# random normal data
set.seed(666)
r_two <- data.frame(dat = c(rnorm(n = 20, mean = 4, sd = 1),
                            rnorm(n = 20, mean = 5, sd = 1)),
                    sample = c(rep("A", 20), rep("B", 20)))

# perform t-test
# note how we set the `var.equal` argument to TRUE because we know 
# our data has the same SD (they are simulated as such!)
t.test(dat ~ sample, data = r_two, var.equal = TRUE)

    Two Sample t-test

data:  dat by sample
t = -1.9544, df = 38, p-value = 0.05805
alternative hypothesis: true difference in means between group A and group B is not equal to 0
95 percent confidence interval:
 -1.51699175  0.02670136
sample estimates:
mean in group A mean in group B 
       4.001438        4.746584 
  1. Repeat this analyses using the Welch’s t.test(). (/5)
  2. Repeat your analysis, above, using the even more old-fashioned Equation 4 in the lecture. Show the code and talk us through the step you followed to read the p-values off the table of t-statistics. (/10)

Answer

  1. We simply change the argument var.equal to FALSE in the t.test() function. This is because we are using a Welch’s t-test, which does not assume equal variances between the two groups.
# random normal data
set.seed(666)
r_two <- data.frame(dat = c(rnorm(n = 20, mean = 4, sd = 1),
                            rnorm(n = 20, mean = 5, sd = 1)),
                    sample = c(rep("A", 20), rep("B", 20)))

# perform t-test
# note how we set the `var.equal` argument to FALSE because we want
# to do a Welch's t-test
t.test(dat ~ sample, data = r_two, var.equal = FALSE)

    Welch Two Sample t-test

data:  dat by sample
t = -1.9544, df = 36.501, p-value = 0.05835
alternative hypothesis: true difference in means between group A and group B is not equal to 0
95 percent confidence interval:
 -1.51803431  0.02774392
sample estimates:
mean in group A mean in group B 
       4.001438        4.746584 
  • ✓ (x 5) for this simple calculation.
  1. To do the Welch’s t-test manually (as one would do 30 years ago with a hand-held calculator), we need to calculate the t-statistic and the degrees of freedom. The t-statistic is calculated by:

t=A¯B¯SA2n+SB2m

Here, SA and SB are the variances of groups A and B, respectively (see Section X). The d.f. to use with Welch’s t-test is obtained using the Welch–Satterthwaite equation:

d.f.=(SA2n+SB2m)2(SA4n1+SB4m1)

where n and m are the sample sizes of groups A and B, respectively. The p-value is then obtained from the t-distribution with the degrees of freedom calculated above (see below).

# calculate the t-statistic
t_stat <- (mean(r_two$dat[r_two$sample == "A"]) - mean(r_two$dat[r_two$sample == "B"])) / 
  sqrt((var(r_two$dat[r_two$sample == "A"]) / length(r_two$dat[r_two$sample == "A"])) +
       (var(r_two$dat[r_two$sample == "B"]) / length(r_two$dat[r_two$sample == "B"])))

# calculate the degrees of freedom
df <- ((var(r_two$dat[r_two$sample == "A"]) / length(r_two$dat[r_two$sample == "A"])) +
        (var(r_two$dat[r_two$sample == "B"]) / length(r_two$dat[r_two$sample == "B"])))^2 /
  (((var(r_two$dat[r_two$sample == "A"]) / length(r_two$dat[r_two$sample == "A"]))^2 /
    (length(r_two$dat[r_two$sample == "A"]) - 1)) +
   ((var(r_two$dat[r_two$sample == "B"]) / length(r_two$dat[r_two$sample == "B"]))^2 /
    (length(r_two$dat[r_two$sample == "B"]) - 1)))

print(t_stat)
[1] -1.954362
print(df)
[1] 36.50064
  • ✓ (x 10) What do we do with the d.f. and the t-statistic? We look them up in the t-distribution table (find one!) to find the critical value of t for a given significance level (e.g., 0.05). If our calculated t-statistic (take the absolute) is greater than the critical value at the d.f. we are using, we reject the null hypothesis. If it is less than the critical value, we fail to reject the null hypothesis.

Question 3

Please report back on Task F.3 presented in the lecture. Write up formal Methods and Results sections. (/15)

Answer

Question 4

Please report back the analysis and results for Task F.4. in the lecture. Write up formal Methods and Results sections. (/15)

Answer

Reuse

Citation

BibTeX citation:
@online{smit,_a._j.,
  author = {Smit, A. J.,},
  title = {BCB744 {Task} {F}},
  url = {http://tangledbank.netlify.app/assessments/BCB744_Task_F.html},
  langid = {en}
}
For attribution, please cite this work as:
Smit, A. J. BCB744 Task F. http://tangledbank.netlify.app/assessments/BCB744_Task_F.html.