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 women will report significantly different levels of anxiety than men .

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':    417 obs. of  7 variables:
##  $ X        : int  6350 6456 6608 6612 6715 6726 6778 6859 6860 6929 ...
##  $ ethnicity: chr  "White - British, Irish, other" "White - British, Irish, other" "White - British, Irish, other" "White - British, Irish, other" ...
##  $ gender   : chr  "female" "female" "female" "I use another term" ...
##  $ gad      : num  2.14 3.71 2.57 2.57 2 ...
##  $ rse      : num  2.1 1.4 1.9 1.9 2.3 2 1.8 2.5 2 2.3 ...
##  $ brs      : num  2.17 1.83 3.17 3.17 3 ...
##  $ pss      : num  4 4.25 3.25 3.5 3 4.5 3.75 3 3.25 2.75 ...
# 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':    417 obs. of  7 variables:
##  $ X        : int  6350 6456 6608 6612 6715 6726 6778 6859 6860 6929 ...
##  $ ethnicity: chr  "White - British, Irish, other" "White - British, Irish, other" "White - British, Irish, other" "White - British, Irish, other" ...
##  $ gender   : Factor w/ 4 levels "female","I use another term",..: 1 1 1 2 1 1 4 4 1 2 ...
##  $ gad      : num  2.14 3.71 2.57 2.57 2 ...
##  $ rse      : num  2.1 1.4 1.9 1.9 2.3 2 1.8 2.5 2 2.3 ...
##  $ brs      : num  2.17 1.83 3.17 3.17 3 ...
##  $ pss      : num  4 4.25 3.25 3.5 3 4.5 3.75 3 3.25 2.75 ...
table(d$gender, useNA = "always")
## 
##             female I use another term               male  Prefer not to say 
##                325                 25                 59                  8 
##               <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$gad)
##    vars   n mean   sd median trimmed  mad min max range  skew kurtosis   se
## X1    1 417 2.54 0.93   2.57    2.55 1.27   1   4     3 -0.04    -1.19 0.05
# also use a histogram to visualize your continuous variable

hist(d$gad)

# 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$gad, group=d$gender)
## 
##  Descriptive statistics by group 
## group: female
##    vars   n mean   sd median trimmed  mad min max range  skew kurtosis   se
## X1    1 325 2.55 0.91   2.57    2.55 1.27   1   4     3 -0.03    -1.19 0.05
## ------------------------------------------------------------ 
## group: I use another term
##    vars  n mean   sd median trimmed  mad  min max range  skew kurtosis   se
## X1    1 25 3.11 0.83   3.29    3.17 1.06 1.29   4  2.71 -0.51    -1.06 0.17
## ------------------------------------------------------------ 
## group: male
##    vars  n mean sd median trimmed  mad min max range skew kurtosis   se
## X1    1 59 2.23  1   2.14    2.17 1.27   1   4     3 0.33    -1.21 0.13
## ------------------------------------------------------------ 
## group: Prefer not to say
##    vars n mean   sd median trimmed  mad min max range skew kurtosis   se
## X1    1 8 2.95 0.64   2.93    2.95 0.64   2   4     2 0.13    -1.35 0.23
# lastly, use a boxplot to examine your chosen continuous and categorical variables together

boxplot(d$gad~d$gender)

5 Check Your Assumptions

5.1 T-test Assumptions

  • IV must have …
  • Data values must be independent (independent t-test only)
  • Data obtained via a random sample
  • Dependent variable must be …
  • Variances of the two groups are …
# 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 %in% c("male","female")) # use subset() to remove all participants from the additional level

table(d$gender, useNA = "always") # verify that now there are ZERO participants in the additional level
## 
##             female I use another term               male  Prefer not to say 
##                325                  0                 59                  0 
##               <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   <NA> 
##    325     59      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(gad~gender, data =d)
## Levene's Test for Homogeneity of Variance (center = median)
##        Df F value Pr(>F)
## group   1   1.215  0.271
##       382

Levene’s test revealed that our data does not have significantly different variances between the two comparison groups, men and women, on their levels of anxiety.

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 non-binary participants from my sample, along with those who selected “prefer not to say”. 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.

Levene’s test was not significant . Homogeneity of variance was met, I will use welches’s t-test instead of students’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$gad~d$gender)  # t_output will now show in your Global Environment

7 View Test Output

t_output
## 
##  Welch Two Sample t-test
## 
## data:  d$gad by d$gender
## t = 2.263, df = 76.574, p-value = 0.02647
## alternative hypothesis: true difference in means between group female and group male is not equal to 0
## 95 percent confidence interval:
##  0.03791011 0.59390960
## sample estimates:
## mean in group female   mean in group male 
##             2.545934             2.230024

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$gad~d$gender)  # d_output will now show in your Global Environment

9 View Effect Size

d_output
## 
## Cohen's d
## 
## d estimate: 0.3410762 (small)
## 95 percent confidence interval:
##      lower      upper 
## 0.06178295 0.62036951
## Remember to always take the ABSOLAUTE VALUE of the effect size value (i.e., it will never be negative)

10 Write Up Results

To test our hypothesis that women in our sample would report significantly higher levels of anxiety than men, we used an independent samples t-test . This required us to drop our non-binary gender participants from our sample, as we are limited to a two-group comparison when using this test. We tested the homogeneity of variance with levines’s test and found no significant difference (p > .001). This suggests that there is an increased chance of type I error. To correct for this issue, we used welches ’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 women (M = 3.94, SD =0.58 ) reported significantly higher levels of GAD than men (M =3.41 , SD =0.93 ); t(382) = -16.05, p < .001 (see Figure 1). The effect size was calculated using Cohen’s d, with a value of 0.34 (small effect; Cohen, 1988).

[Revise the above statements for you HW assignment.]

References

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