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
## Warning: package 'psych' was built under R version 4.3.3
library(car) # for the leveneTest() command
## Warning: package 'car' was built under R version 4.3.3
## Loading required package: carData
## 
## Attaching package: 'car'
## The following object is masked from 'package:psych':
## 
##     logit
library(effsize) # for the cohen.d() command
## Warning: package 'effsize' was built under R version 4.3.3
## 
## 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

I predict that there will be a significant difference in perceived importance of markers of adulthood by people’s gender identity, between males and females.

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':    3089 obs. of  7 variables:
##  $ ResponseID: chr  "R_BJN3bQqi1zUMid3" "R_2TGbiBXmAtxywsD" "R_12G7bIqN2wB2N65" "R_39pldNoon8CePfP" ...
##  $ gender    : chr  "f" "m" "m" "f" ...
##  $ marriage5 : chr  "are currently divorced from one another" "are currently married to one another" "are currently married to one another" "are currently married to one another" ...
##  $ moa_role  : num  3 2.67 2.5 2 2.67 ...
##  $ idea      : num  3.75 3.88 3.75 3.75 3.5 ...
##  $ mindful   : num  2.4 1.8 2.2 2.2 3.2 ...
##  $ belong    : num  2.8 4.2 3.6 4 3.4 4.2 3.9 3.6 2.9 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)

str(d)
## 'data.frame':    3089 obs. of  7 variables:
##  $ ResponseID: chr  "R_BJN3bQqi1zUMid3" "R_2TGbiBXmAtxywsD" "R_12G7bIqN2wB2N65" "R_39pldNoon8CePfP" ...
##  $ gender    : Factor w/ 3 levels "f","m","nb": 1 2 2 1 2 1 1 1 1 1 ...
##  $ marriage5 : chr  "are currently divorced from one another" "are currently married to one another" "are currently married to one another" "are currently married to one another" ...
##  $ moa_role  : num  3 2.67 2.5 2 2.67 ...
##  $ idea      : num  3.75 3.88 3.75 3.75 3.5 ...
##  $ mindful   : num  2.4 1.8 2.2 2.2 3.2 ...
##  $ belong    : num  2.8 4.2 3.6 4 3.4 4.2 3.9 3.6 2.9 2.5 ...
table(d$gender, useNA = "always")
## 
##    f    m   nb <NA> 
## 2263  774   52    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$moa_role)
##    vars    n mean   sd median trimmed  mad min max range  skew kurtosis   se
## X1    1 3089 2.97 0.72      3       3 0.74   1   4     3 -0.33    -0.84 0.01
# also use a histogram to visualize your continuous variable

hist(d$moa_role)

# 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$moa_role, group=d$gender)
## 
##  Descriptive statistics by group 
## group: f
##    vars    n mean   sd median trimmed  mad min max range  skew kurtosis   se
## X1    1 2263 2.98 0.71      3    3.01 0.74   1   4     3 -0.33    -0.85 0.02
## ------------------------------------------------------------ 
## group: m
##    vars   n mean   sd median trimmed  mad min max range  skew kurtosis   se
## X1    1 774 2.96 0.73      3       3 0.74   1   4     3 -0.38    -0.72 0.03
## ------------------------------------------------------------ 
## group: nb
##    vars  n mean   sd median trimmed  mad  min max range skew kurtosis  se
## X1    1 52 2.33 0.75   2.17    2.26 0.49 1.33   4  2.67  0.8    -0.36 0.1
# lastly, use a boxplot to examine your chosen continuous and categorical variables together

boxplot(d$moa_role~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 != "nb") # 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
## 
##    f    m   nb <NA> 
## 2263  774    0    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 
## 
##    f    m <NA> 
## 2263  774    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(moa_role~gender, data =d)
## Levene's Test for Homogeneity of Variance (center = median)
##         Df F value Pr(>F)
## group    1  0.1429 0.7054
##       3035

Levene’s test revealed that my data has non-significant differences in variances between the two comparison groups, men and women, on their perceived importance of markers of adulthood.

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 non-binary participants from my sample. I will make a note to discuss this issue in my methods section write-up and in my section as a limitation of my study.

My data does not have an issue regarding homogeneity of variance, as Levene’s test was nonsignificant. 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$moa_role~d$gender)  # t_output will now show in your Global Environment

7 View Test Output

t_output
## 
##  Welch Two Sample t-test
## 
## data:  d$moa_role by d$gender
## t = 0.54517, df = 1312, p-value = 0.5857
## alternative hypothesis: true difference in means between group f and group m is not equal to 0
## 95 percent confidence interval:
##  -0.04291912  0.07595344
## sample estimates:
## mean in group f mean in group m 
##        2.980557        2.964040

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 my hypothesis that there would be a significant difference in the perceived importance of markers of adulthood by gender identity between males and females, I used an independent samples t-test. This required me to drop the non-binary gender participants from the sample, as I am limited to a two-group comparison when using this test. I tested the homogeneity of variance with Levene’s test and found no significant signs of heterogeneity (p > 0.5). Because this is insignificant, I did not test the effect size. I used Welch’s t-test, which does not assume homogeneity of variance. My data met all other assumptions of an independent samples t-test.

Contrary to my prediction, I found no significant difference in the perceived importance of markers of adulthood between women (M = 2.98, SD = 0.71) and men (M 2.96 = , SD = 0.73); t(1312) = 0.55, p = 0.71 (see Figure 1).

[Revise the above statements for you HW assignment.]

References

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