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)

# For the HW, you will import the project dataset you cleaned previously
# This will be the dataset you'll use for HWs throughout the rest of the semester

3 State Your Hypothesis

We predict that females will report significantly higher levels of perceived stress than males during COVID-19, as measured by the perceived stress scale (PSS). pandemic

[Remember to revise the above hypothesis in you HW assignment.]

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':    1252 obs. of  7 variables:
##  $ X         : int  1 20 30 31 33 49 57 81 86 104 ...
##  $ gender    : chr  "female" "male" "female" "female" ...
##  $ employment: chr  "3 employed" "1 high school equivalent" "1 high school equivalent" "3 employed" ...
##  $ big5_open : num  5.33 5.33 5 6 5 ...
##  $ iou       : num  3.19 4 1.59 3.37 1.7 ...
##  $ rse       : num  2.3 1.6 3.9 1.7 3.9 2.4 1.8 3.5 2.6 3 ...
##  $ pss       : num  3.25 3.75 1 3.25 2 2 4 1.25 2.5 2.5 ...
# 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)

table(d$gender, useNA = "always")
## 
##             female I use another term               male  Prefer not to say 
##               1005                 32                195                 20 
##               <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 1252 2.95 0.95      3    2.95 1.11   1   5     4 0.06    -0.76 0.03
# 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 1005 2.99 0.95      3    2.98 1.11   1   5     4 0.01    -0.74 0.03
## ------------------------------------------------------------ 
## group: I use another term
##    vars  n mean   sd median trimmed  mad min max range  skew kurtosis   se
## X1    1 32 3.72 0.66   3.75    3.75 0.74   2   5     3 -0.43    -0.22 0.12
## ------------------------------------------------------------ 
## group: male
##    vars   n mean  sd median trimmed  mad min max range skew kurtosis   se
## X1    1 195 2.62 0.9    2.5    2.58 0.74   1   5     4 0.53    -0.21 0.06
## ------------------------------------------------------------ 
## group: Prefer not to say
##    vars  n mean  sd median trimmed  mad  min  max range  skew kurtosis  se
## X1    1 20 3.38 0.9    3.5    3.41 1.11 1.75 4.75     3 -0.38    -1.18 0.2
# last, use a boxplot to examine your continuous and categorical variables together

boxplot(d$pss~d$gender)

5 Check Your Assumptions

5.1 T-test Assumptions

  • IV must have two 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 the additional levels so that you meet the first assumption of a t-test.

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

table(d$gender, useNA = "always") #verify that now there are no participants in the removed level
## 
##             female I use another term               male  Prefer not to say 
##               1005                  0                195                 20 
##               <NA> 
##                  0
d$gender <- droplevels(d$gender) # use droplevels() to drop the empty factor

table(d$gender, useNA = "always") #verify that now the entire factor level is removed 
## 
##            female              male Prefer not to say              <NA> 
##              1005               195                20                 0

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(d$pss~d$gender, data = d)

As you can see, the data has significantly different variances between the two comparison groups.

[Revise the above statement for you HW assignment.]

When running a t-test, we can account for heterogeneity in our variance by using Welch’s t-test, which does not have the same assumption about variance as Student’s t-test (the general default type of t-test). 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 just 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 two levels. To proceed with this analysis, I will drop the I use another term and Prefer not to say participants from my sample. I will make a note to discuss this issue in my Method write-up and in my Discussion as a limitation of my study.

My data also has some 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.

[Revise the above statements for you HW assignment.]

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

d <- d[d$gender %in% c("male", "female"), ]


t_output <- t.test(d$pss ~ d$gender)

7 View Test Output

t_output
## 
##  Welch Two Sample t-test
## 
## data:  d$pss by d$gender
## t = 5.0673, df = 283.36, p-value = 7.291e-07
## alternative hypothesis: true difference in means between group female and group male is not equal to 0
## 95 percent confidence interval:
##  0.2205964 0.5008349
## sample estimates:
## mean in group female   mean in group male 
##             2.985075             2.624359

8 Calculate Cohen’s d

# once again, we use the same formula, y~x, to calculate cohen's d
d_output <- cohen.d(d$pss~d$gender)
## Warning in cohen.d.default(d, f, subject = subject, ...): Factor with multiple
## levels, using only the two actually present in data

9 View Effect Size

d_output
## 
## Cohen's d
## 
## d estimate: 0.3836911 (small)
## 95 percent confidence interval:
##     lower     upper 
## 0.2293996 0.5379826

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 our I use another term and Prefer not to say participants from our sample, as we are limited to a two-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 a t-test.

As predicted, we found that females (M = 2.99, SD = 0.95) reported significantly higher levels of conscientiousness than males (M = 2.62, SD = 0.9); t(283.36) = 5.0673, p < .001 (see Figure 1). The effect size was calculated using Cohen’s d, with a value of .38 (medium effect; Parsons et al., 2022).

[Revise the above statements for you HW assignment.]

References

Parsons, S., Todorovic, A.,Lim, M. C., Songco, A., & Fox,E. (2022). Data and Protocol for the Oxford Achieving Resilience During COVID-19(ARC) Study. Journal of Open Psychology Data, 10: 4, pp. 1–11.