t-Test HW

Author

Lily DeArmond

Loading Libraries

library(psych) # for the describe() command
library(car) # for the leveneTest() command
library(effsize) # for the cohen.d() command

Importing Data

# UPDATE THIS FOR HW!!!!
d <- read.csv(file="Data/mydata.csv", header=T)

State Your Hypothesis - PART OF YOUR WRITEUP

Females will report higher levels of stress than males.

Check Your Assumptions

T-test Assumptions

  • Data values must be independent (independent t-test only) (confirmed by data report)
  • Data obtained via a random sample (confirmed by data report)
  • IV must have two levels (will check below)
  • Dependent variable must be normally distributed (will check below. if issues, note and proceed)
  • Variances of the two groups must be approximately equal, aka ‘homogeneity of variance’. Lacking this makes our results inaccurate (will check below - this really only applies to Student’s t-test, but we’ll check it anyway)

Checking IV levels

# preview the levels and counts for your IV
table(d$gender, useNA = "always")

            female I use another term               male  Prefer not to say 
                97                  2                 17                  2 
              <NA> 
                 0 
# # note that the table() output shows you exactly how the levels of your variable are written. when recoding, make sure you are spelling them exactly as they appear
 
# # to drop levels from your variable
# # this subsets the data and says that any participant who is coded as 'LEVEL BAD' should be removed
# # if you don't need this for the homework, comment it out (add a # at the beginning of the line)
d <- subset(d, gender != "I use another term")
d <- subset(d, gender != "Prefer not to say")

table(d$age, useNA = "always")

         1 under 18 2 between 18 and 25                <NA> 
                104                  10                   0 
# # to combine levels
# # this says that where any participant is coded as 'LEVEL BAD' it should be replaced by 'LEVEL GOOD'
# # you can repeat this as needed, changing 'LEVEL BAD' if you have multiple levels that you want to combine into a single level
# # if you don't need this for the homework, comment it out (add a # at the beginning of the line)
 
# # preview your changes and make sure everything is correct
table(d$gender, useNA = "always")

female   male   <NA> 
    97     17      0 
table(d$age, useNA = "always") 

         1 under 18 2 between 18 and 25                <NA> 
                104                  10                   0 
# # check your variable types
str(d)
'data.frame':   114 obs. of  6 variables:
 $ gender              : chr  "female" "male" "female" "female" ...
 $ age                 : chr  "1 under 18" "1 under 18" "1 under 18" "1 under 18" ...
 $ mfq_26              : num  5.1 3.7 4.5 4.05 3.9 3.45 3.55 4.95 4.1 3.65 ...
 $ school_covid_support: num  1.25 1.2 1 1.6 1.33 ...
 $ pss                 : num  4.5 3.25 3.75 3.5 5 4.25 4.5 3.75 2.75 2.5 ...
 $ support             : num  3.5 1.5 4.17 4.5 1.5 ...
# # make sure that your IV is recognized as a factor by R
d$gender <- as.factor(d$gender)
d$age <- as.factor(d$age)

Testing Homogeneity of Variance with Levene’s Test

We can test whether the variances of our two groups are equal using Levene’s test. The null hypothesis is that the variance between the two groups is equal, which is the result we want. So when running Levene’s test we’re hoping for a non-significant result!

# # use the leveneTest() command from the car package to test homogeneity of variance
# # uses the same 'formula' setup that we'll use for our t-test: formula is y~x, where y is our DV and x is our IV
leveneTest(pss~gender, data = d)
Levene's Test for Homogeneity of Variance (center = median)
       Df F value Pr(>F)
group   1  0.3616 0.5488
      112               

This is more of a formality in our case, because we are using Welch’s t-test, which does not have the same assumptions as Student’s t-test (the default type of t-test) about variance. R defaults to using Welch’s t-test so this doesn’t require any extra effort on our part!

Check Normality

# you only need to check the variables you're using in the current analysis
# although you checked them previously, it's always a good idea to look them over again and be sure that everything is correct

# you can use the describe() command on an entire datafrom (d) or just on a single variable (d$pss)
# use it to check the skew and kurtosis of your DV
describe(d$pss)
   vars   n mean   sd median trimmed  mad  min max range  skew kurtosis   se
X1    1 114 3.32 0.91    3.5    3.32 1.11 1.25   5  3.75 -0.07    -0.86 0.09
# can use the describeBy() command to view the means and standard deviations by group
# it's very similar to the describe() command but splits the dataframe according to the 'group' variable
describeBy(d$pss, group=d$gender)

 Descriptive statistics by group 
group: female
   vars  n mean   sd median trimmed  mad min max range  skew kurtosis   se
X1    1 97  3.4 0.88    3.5    3.41 1.11 1.5   5   3.5 -0.05    -0.88 0.09
------------------------------------------------------------ 
group: male
   vars  n mean   sd median trimmed  mad  min max range skew kurtosis   se
X1    1 17 2.82 0.97      3    2.82 1.11 1.25 4.5  3.25 0.13    -1.28 0.23
# also use a histogram to examine your continuous variable
hist(d$pss)

# last, use a boxplot to examine your continuous and categorical variables together
# categorical/IV goes on the right, continuous/DV goes on the left
boxplot(d$pss~d$gender)

Issues with My Data - PART OF YOUR WRITEUP

“We dropped participants who did not fall into the male or female category for gender (e.g.,”Prefer not to say” and “I use another term”). We also confirmed homogeneity of variance using Levine’s test (p = .549) and that our DV is normally distributed (skew and kurtosis between -2 and +2).”

Run a T-test

# # very simple! we specify the dataframe alongside the variables instead of having a separate argument for the dataframe like we did for leveneTest()
t_output <- t.test(d$pss~d$gender)

View Test Output

t_output

    Welch Two Sample t-test

data:  d$pss by d$gender
t = 2.3051, df = 20.886, p-value = 0.03153
alternative hypothesis: true difference in means between group female and group male is not equal to 0
95 percent confidence interval:
 0.05640858 1.10065631
sample estimates:
mean in group female   mean in group male 
            3.402062             2.823529 

Calculate Cohen’s d

# # once again, we use our formula to calculate cohen's d
d_output <- cohen.d(d$pss~d$gender)

View Effect Size

  • Trivial: < .2
  • Small: between .2 and .5
  • Medium: between .5 and .8
  • Large: > .8
d_output

Cohen's d

d estimate: 0.6488491 (medium)
95 percent confidence interval:
    lower     upper 
0.1209731 1.1767251 

Write Up Results

We tested our hypothesis that females would report significantly more stress than males using an independent samples t-test. Our data met all of the assumption of a t-test, however, we did not find a significant difference, t(20.886) = 2.3051, p = .032, d = .649, 95% [0.12, 1.18] (refer to figure 1).

Our effect size was medium according to Cohen (1988).

References

Cohen J. (1988). Statistical Power Analysis for the Behavioral Sciences. New York, NY: Routledge Academic.