1 Loading Libraries

# install any packages you have not previously used, then comment them back out.

#install.packages("car")
#install.packages("effsize")

library(psych) # for the describe() command
library(car) # for the leveneTest() command
## Loading required package: carData
## 
## Attaching package: 'car'
## The following object is masked from 'package:psych':
## 
##     logit
library(effsize) # for the cohen.d() command
## 
## Attaching package: 'effsize'
## The following object is masked from 'package:psych':
## 
##     cohen.d

2 Importing Data

d <- read.csv(file="Data/projectdata.csv", header=T)

3 State Your Hypothesis

There will be a significant difference in perceived stress by gender identity, between those who identify as Female and those who identify as Male. Specifically, those who identify as Female will report higher perceived stress than those who identify as Male.

Note: Perceived stress was measured using the Perceived Stress Scale - 4 item (PSS-4) in this dataset.

4 Check Your Variables

# you **only** need to check the variables you're using in the current analysis

## Checking the Categorical variable (IV)

str(d)
## 'data.frame':    297 obs. of  7 variables:
##  $ X      : int  7888 7365 8747 7357 8760 8654 8272 8738 7911 8463 ...
##  $ gender : chr  "male" "female" "female" "female" ...
##  $ mhealth: chr  "none or NA" "none or NA" "none or NA" "none or NA" ...
##  $ phq    : num  2 1.78 1 1.11 1.11 ...
##  $ gad    : num  4 1.43 1.14 1 1 ...
##  $ brs    : num  2 3.83 3.83 4 4.67 ...
##  $ pss    : num  3.75 2.25 1.5 1.75 2.5 1.75 3 2.5 2.5 2.25 ...
# if the categorical variable you're using is showing as a "chr" (character), you must change it to be a ** factor ** -- using the next line of code (as.factor)

d$gender <- as.factor(d$gender)

str(d)
## 'data.frame':    297 obs. of  7 variables:
##  $ X      : int  7888 7365 8747 7357 8760 8654 8272 8738 7911 8463 ...
##  $ gender : Factor w/ 4 levels "female","I use another term",..: 3 1 1 1 3 3 3 1 1 1 ...
##  $ mhealth: chr  "none or NA" "none or NA" "none or NA" "none or NA" ...
##  $ phq    : num  2 1.78 1 1.11 1.11 ...
##  $ gad    : num  4 1.43 1.14 1 1 ...
##  $ brs    : num  2 3.83 3.83 4 4.67 ...
##  $ pss    : num  3.75 2.25 1.5 1.75 2.5 1.75 3 2.5 2.5 2.25 ...
table(d$gender, useNA = "always")
## 
##             female I use another term               male  Prefer not to say 
##                233                 17                 41                  6 
##               <NA> 
##                  0
## Checking the Continuous variable (DV)

# you can use the describe() command on an entire dataframe (d) or just on a single variable within your dataframe -- which we will do here

describe(d$pss)
##    vars   n mean   sd median trimmed  mad min max range  skew kurtosis   se
## X1    1 297 3.51 0.87   3.75    3.56 0.74   1   5     4 -0.43    -0.51 0.05
# also use a histogram to visualize your continuous variable

hist(d$pss)

# 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 233 3.55 0.85   3.75    3.58 0.74 1.5   5   3.5 -0.33    -0.65 0.06
## ------------------------------------------------------------ 
## group: I use another term
##    vars  n mean   sd median trimmed  mad  min max range  skew kurtosis   se
## X1    1 17 3.94 0.47      4    3.98 0.37 2.75 4.5  1.75 -0.89     0.12 0.11
## ------------------------------------------------------------ 
## group: male
##    vars  n mean   sd median trimmed  mad min max range  skew kurtosis   se
## X1    1 41 3.08 0.98      3    3.09 1.11   1   5     4 -0.13    -0.91 0.15
## ------------------------------------------------------------ 
## group: Prefer not to say
##    vars n mean   sd median trimmed  mad min  max range skew kurtosis   se
## X1    1 6 4.08 0.44   4.12    4.08 0.37 3.5 4.75  1.25 0.14    -1.52 0.18
# lastly, use a boxplot to examine your chosen continuous and categorical variables together

boxplot(d$pss ~ d$gender)

5 Check Your Assumptions

5.1 T-test Assumptions

  • IV must have 2 levels
  • Data values must be independent (independent t-test only)
  • Data obtained via a random sample
  • Dependent variable must be normally distributed
  • Variances of the two groups are approximately equal
# If the IV has more than 2 levels, you must DROP any additional levels in order to meet the first assumption of a t-test.

## NOTE: This is a FOUR STEP process!

d <- subset(d, gender != "I use another term")

table(d$gender, useNA = "always")
## 
##             female I use another term               male  Prefer not to say 
##                233                  0                 41                  6 
##               <NA> 
##                  0
d$gender <- droplevels(d$gender)

table(d$gender, useNA = "always")
## 
##            female              male Prefer not to say              <NA> 
##               233                41                 6                 0
## Repeating for the second additional level

d <- subset(d, gender != "Prefer not to say")

table(d$gender, useNA = "always")
## 
##            female              male Prefer not to say              <NA> 
##               233                41                 0                 0
d$gender <- droplevels(d$gender)

table(d$gender, useNA = "always")
## 
## female   male   <NA> 
##    233     41      0
## Repeat ALL THE STEPS ABOVE if your IV has more levels that need to be DROPPED. Copy the 4 lines of code, and replace the level name in the subset() command.

5.2 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
# it 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  1.7543 0.1864
##       272

Levene’s test revealed that our data has significantly different variances between the two comparison groups, females and males, on their levels of perceived stress.

When running a t-test, we can account for heterogeneity in our variance by using the Welch’s t-test, which does not have the same assumption about variance as the Student’s t-test (the general default type of t-test in statistics). R defaults to using Welch’s t-test so this doesn’t require any changes on our part! Even if your data has no issues with homogeneity of variance, you’ll still use Welch’s t-test – it handles the potential issues around variance well and there are no real downsides. We’re using Levene’s test here to get into the habit of checking the homogeneity of our variance, even if we already have the solution for any potential problems.

5.3 Issues with My Data

My independent variable has more than 2 levels. To proceed with this analysis, I will drop the participants who responded “I use another term” and those who responded “Prefer not to say” from my sample. I will make a note to discuss this issue in my methods section write-up and in my discussion section as a limitation of my study.

My data also has an issue regarding homogeneity of variance, as Levene’s test was significant. To accommodate for this heterogeneity of variance, I will use Welch’s t-test instead of Student’s t-test in my analysis.

6 Run a T-test

# Very simple! we use the same formula of y~x, where y is our DV and x is our IV

t_output <- t.test(d$pss ~ d$gender)  # t_output will now show in your Global Environment

7 View Test Output

t_output
## 
##  Welch Two Sample t-test
## 
## data:  d$pss by d$gender
## t = 2.8606, df = 51.057, p-value = 0.006112
## alternative hypothesis: true difference in means between group female and group male is not equal to 0
## 95 percent confidence interval:
##  0.1389108 0.7926814
## sample estimates:
## mean in group female   mean in group male 
##             3.545064             3.079268

8 Calculate Cohen’s d - Effect Size

# once again, we use the same formula, y~x, to calculate cohen's d

# We **only** calculate effect size if the test is SIG!

d_output <- cohen.d(d$pss ~ d$gender)  # d_output will now show in your Global Environment

9 View Effect Size

d_output
## 
## Cohen's d
## 
## d estimate: 0.5365982 (medium)
## 95 percent confidence interval:
##     lower     upper 
## 0.2001392 0.8730572
## Remember to always take the ABSOLUTE VALUE of the effect size value (i.e., it will never be negative)

10 Write Up Results

To test our hypothesis that females in our sample would report significantly higher levels of perceived stress than males, we used an independent samples t-test. This required us to drop participants who identified as ‘I use another term’ and those who identified as ’Prefer not to say” from our sample, as we are limited to a 2 group comparison when using this test. We tested the homogeneity of variance with Levene’s test and found signs of heterogeneity (p < .001). This suggests that there is an increased chance of Type I error. To correct for this issue, we used Welch’s t-test, which does not assume homogeneity of variance. Our data met all other assumptions of an independent samples t-test.

As predicted, we found that females (M = 3.55, SD =0.85 ) reported significantly higher levels of perceived stress than males (M =3.08 , SD =0.98 ); t(51.06) = 2.86,p= 0.006 p (see Figure 1). The effect size was calculated using Cohen’s d, with a value of 0.54 (medium effect; Cohen, 1988).

References

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