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 there will be a significant difference in positive effects of COVID by people’s level of gender between men and women .

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':    716 obs. of  7 variables:
##  $ X          : int  520 2814 3146 3295 717 6056 4753 5365 2044 1965 ...
##  $ gender     : chr  "female" "male" "female" "male" ...
##  $ mhealth    : chr  "none or NA" "none or NA" "none or NA" "none or NA" ...
##  $ covid_pos  : int  0 0 0 0 0 0 0 0 0 0 ...
##  $ covid_neg  : int  0 0 0 0 0 0 0 0 0 0 ...
##  $ isolation_c: num  1 1 1 1 1 1 1 1 1 1 ...
##  $ support    : num  2.83 3 4 4 3.67 ...
# 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':    716 obs. of  7 variables:
##  $ X          : int  520 2814 3146 3295 717 6056 4753 5365 2044 1965 ...
##  $ gender     : Factor w/ 4 levels "female","I use another term",..: 1 3 1 3 1 1 1 1 3 3 ...
##  $ mhealth    : chr  "none or NA" "none or NA" "none or NA" "none or NA" ...
##  $ covid_pos  : int  0 0 0 0 0 0 0 0 0 0 ...
##  $ covid_neg  : int  0 0 0 0 0 0 0 0 0 0 ...
##  $ isolation_c: num  1 1 1 1 1 1 1 1 1 1 ...
##  $ support    : num  2.83 3 4 4 3.67 ...
table(d$gender, useNA = "always")
## 
##             female I use another term               male  Prefer not to say 
##                562                 20                124                 10 
##               <NA> 
##                  0
## Checking the positive COVID 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$covid_pos)
##    vars   n mean  sd median trimmed mad min max range skew kurtosis   se
## X1    1 716 2.48 3.6      0     1.8   0   0  15    15 1.29      0.6 0.13
# also use a histogram to visualize your continuous variable

hist(d$covid_pos)

# 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$covid_pos, group=d$gender)
## 
##  Descriptive statistics by group 
## group: female
##    vars   n mean   sd median trimmed mad min max range skew kurtosis   se
## X1    1 562 2.55 3.66      0    1.87   0   0  15    15 1.23     0.33 0.15
## ------------------------------------------------------------ 
## group: I use another term
##    vars  n mean   sd median trimmed  mad min max range skew kurtosis   se
## X1    1 20  2.7 2.56      2    2.44 2.97   0   8     8 0.57    -1.04 0.57
## ------------------------------------------------------------ 
## group: male
##    vars   n mean   sd median trimmed mad min max range skew kurtosis   se
## X1    1 124 2.15 3.52      0    1.41   0   0  15    15 1.64     1.89 0.32
## ------------------------------------------------------------ 
## group: Prefer not to say
##    vars  n mean   sd median trimmed  mad min max range skew kurtosis   se
## X1    1 10  2.3 2.79      2    1.75 2.97   0   9     9 1.19     0.52 0.88
# lastly, use a boxplot to examine your chosen continuous and categorical variables together

boxplot(d$covid_pos~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 approx. 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  != "Prefer not to say") # 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 
##                562                 20                124                  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 I use another term               male               <NA> 
##                562                 20                124                  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.
# 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") # 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               <NA> 
##                562                  0                124                  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> 
##    562    124      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(covid_pos~gender, data = d)
## Levene's Test for Homogeneity of Variance (center = median)
##        Df F value Pr(>F)
## group   1  1.2287  0.268
##       684

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

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 two levels. To proceed with this analysis, I will drop the “Prefer not to say” and “I use another term” participants 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 did not have an issue regarding homogeneity of variance, as Levene’s test was not significant. I will still 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$covid_pos~d$gender)  # t_output will now show in your Global Environment

7 View Test Output

t_output
## 
##  Welch Two Sample t-test
## 
## data:  d$covid_pos by d$gender
## t = 1.1366, df = 186.39, p-value = 0.2571
## alternative hypothesis: true difference in means between group female and group male is not equal to 0
## 95 percent confidence interval:
##  -0.2943569  1.0946668
## sample estimates:
## mean in group female   mean in group male 
##             2.553381             2.153226

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

9 View Effect Size

#d_output

## 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 and men in our sample would report significantly different levels of positive effects of COVID, we used an independent samples t-test. This required us to drop our “prefer not to say” and “I use another term” 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 Levene’s test and did not find signs of heterogeneity (p = 0.268). We still used Welch’s t-test, which does not assume homogeneity of variance. Our data met all other assumptions of an independent samples t-test.

Contrary to our prediction, we found that women (M = 2.55, SD = 3.66) reported no significant difference in levels of positive effects of COVID compared to men (M = 2.15, SD = 3.52); t(186.39) = 1.14, p = .257 (see Figure 1). The effect size was not calculated.

References

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