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

Individuals who have never been married will report significantly different levels of self-esteem than those who are in a relationship/married but living apart.

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':    642 obs. of  7 variables:
##  $ X                  : int  2814 3295 717 6056 4753 5365 2044 1246 1250 1761 ...
##  $ relationship_status: chr  "Single, never married" "Single, never married" "Single, never married" "Prefer not to say" ...
##  $ treatment          : chr  "not in treatment" "no psychological disorders" "not in treatment" "not in treatment" ...
##  $ big5_neu           : num  2.67 3.67 4.33 5 1.67 ...
##  $ big5_ext           : num  2.67 4.33 1.67 2.33 5.33 ...
##  $ rse                : num  3.1 3 3 3 4 3.8 2.5 3.8 3.7 3.2 ...
##  $ pss                : num  2.25 2 1.75 2 1 1.25 3 1.25 1.5 1.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$relationship_status <- as.factor(d$relationship_status)

str(d)
## 'data.frame':    642 obs. of  7 variables:
##  $ X                  : int  2814 3295 717 6056 4753 5365 2044 1246 1250 1761 ...
##  $ relationship_status: Factor w/ 5 levels "In a relationship/married and cohabiting",..: 5 5 5 3 5 5 5 5 5 5 ...
##  $ treatment          : chr  "not in treatment" "no psychological disorders" "not in treatment" "not in treatment" ...
##  $ big5_neu           : num  2.67 3.67 4.33 5 1.67 ...
##  $ big5_ext           : num  2.67 4.33 1.67 2.33 5.33 ...
##  $ rse                : num  3.1 3 3 3 4 3.8 2.5 3.8 3.7 3.2 ...
##  $ pss                : num  2.25 2 1.75 2 1 1.25 3 1.25 1.5 1.25 ...
table(d$relationship_status, useNA = "always")
## 
##   In a relationship/married and cohabiting 
##                                          1 
## In a relationship/married but living apart 
##                                         64 
##                          Prefer not to say 
##                                         63 
##                Single, divorced or widowed 
##                                          2 
##                      Single, never married 
##                                        512 
##                                       <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$rse)
##    vars   n mean   sd median trimmed  mad min max range skew kurtosis   se
## X1    1 642 2.46 0.71    2.4    2.46 0.74   1   4     3 0.09    -0.79 0.03
# also use a histogram to visualize your continuous variable

hist(d$rse)

# 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$rse, group=d$relationship_status)
## 
##  Descriptive statistics by group 
## group: In a relationship/married and cohabiting
##    vars n mean sd median trimmed mad min max range skew kurtosis se
## X1    1 1  2.4 NA    2.4     2.4   0 2.4 2.4     0   NA       NA NA
## ------------------------------------------------------------ 
## group: In a relationship/married but living apart
##    vars  n mean   sd median trimmed  mad min max range skew kurtosis  se
## X1    1 64 2.36 0.78   2.35    2.35 0.96   1 3.9   2.9  0.1    -1.16 0.1
## ------------------------------------------------------------ 
## group: Prefer not to say
##    vars  n mean   sd median trimmed  mad min max range skew kurtosis   se
## X1    1 63 2.33 0.72    2.3    2.31 0.89 1.1 3.9   2.8 0.28     -0.8 0.09
## ------------------------------------------------------------ 
## group: Single, divorced or widowed
##    vars n mean   sd median trimmed  mad min max range skew kurtosis  se
## X1    1 2  2.8 0.99    2.8     2.8 1.04 2.1 3.5   1.4    0    -2.75 0.7
## ------------------------------------------------------------ 
## group: Single, never married
##    vars   n mean  sd median trimmed  mad min max range skew kurtosis   se
## X1    1 512 2.49 0.7    2.5    2.48 0.74   1   4     3 0.07    -0.75 0.03
# lastly, use a boxplot to examine your chosen continuous and categorical variables together

boxplot(d$rse~d$relationship_status)

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 any additional levels in order to meet the first assumption of a t-test.

## NOTE: This is a FOUR STEP process!

d <- subset(d, relationship_status != "Single, divorced or widowed") # use subset() to remove all participants from the additional level

table(d$relationship_status, useNA = "always") # verify that now there are ZERO participants in the additional level
## 
##   In a relationship/married and cohabiting 
##                                          1 
## In a relationship/married but living apart 
##                                         64 
##                          Prefer not to say 
##                                         63 
##                Single, divorced or widowed 
##                                          0 
##                      Single, never married 
##                                        512 
##                                       <NA> 
##                                          0
d$relationship_status <- droplevels(d$relationship_status) # use droplevels() to drop the empty factor

table(d$relationship_status, useNA = "always") # verify that now the entire factor level is removed 
## 
##   In a relationship/married and cohabiting 
##                                          1 
## In a relationship/married but living apart 
##                                         64 
##                          Prefer not to say 
##                                         63 
##                      Single, never married 
##                                        512 
##                                       <NA> 
##                                          0
d <- subset(d, relationship_status != "In a relationship/married and cohabiting") # use subset() to remove all participants from the additional level

table(d$relationship_status, useNA = "always") # verify that now there are ZERO participants in the additional level
## 
##   In a relationship/married and cohabiting 
##                                          0 
## In a relationship/married but living apart 
##                                         64 
##                          Prefer not to say 
##                                         63 
##                      Single, never married 
##                                        512 
##                                       <NA> 
##                                          0
d$relationship_status <- droplevels(d$relationship_status) # use droplevels() to drop the empty factor

table(d$relationship_status, useNA = "always") # verify that now the entire factor level is removed 
## 
## In a relationship/married but living apart 
##                                         64 
##                          Prefer not to say 
##                                         63 
##                      Single, never married 
##                                        512 
##                                       <NA> 
##                                          0
d <- subset(d, relationship_status != "Prefer not to say") # use subset() to remove all participants from the additional level

table(d$relationship_status, useNA = "always") # verify that now there are ZERO participants in the additional level
## 
## In a relationship/married but living apart 
##                                         64 
##                          Prefer not to say 
##                                          0 
##                      Single, never married 
##                                        512 
##                                       <NA> 
##                                          0
d$relationship_status <- droplevels(d$relationship_status) # use droplevels() to drop the empty factor

table(d$relationship_status, useNA = "always") # verify that now the entire factor level is removed 
## 
## In a relationship/married but living apart 
##                                         64 
##                      Single, never married 
##                                        512 
##                                       <NA> 
##                                          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(rse~relationship_status, data = d)
## Levene's Test for Homogeneity of Variance (center = median)
##        Df F value Pr(>F)
## group   1  2.1047 0.1474
##       574

Levene’s test revealed that our data does not have significantly different variances between the two comparison groups, individuals who have never been married and those who are in a relationship/married but living apart, on their levels of self-esteem

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 “In a relationship/married and cohabiting”, “Single, divorced or widowed”, and “Prefer not to say” 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 does not have issue regarding homogeneity of variance, as Levene’s test was not significant. I will use Welch’s t-test instead of Student’s t-test in my analysis regardless, as indicated in the HW instructions.

[Revise the above statements for you HW assignment. Then delete this reminder.]

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$rse~d$relationship_status)  # t_output will now show in your Global Environment

7 View Test Output

t_output
## 
##  Welch Two Sample t-test
## 
## data:  d$rse by d$relationship_status
## t = -1.2846, df = 76.45, p-value = 0.2028
## alternative hypothesis: true difference in means between group In a relationship/married but living apart and group Single, never married is not equal to 0
## 95 percent confidence interval:
##  -0.33422961  0.07212024
## sample estimates:
## mean in group In a relationship/married but living apart 
##                                                 2.360937 
##                      mean in group Single, never married 
##                                                 2.491992

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

9 View Effect Size

d_output
## 
## Cohen's d
## 
## d estimate: -0.1841277 (negligible)
## 95 percent confidence interval:
##       lower       upper 
## -0.44475165  0.07649625
## 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 individuals who are Single, and never married would report significantly different levels of self-esteem than those who are in a relationship but living apart, we used an independent samples t-test. This required us to drop our “Single, widowed or divorced”, “In a relationship/married and cohabiting”, 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 that the assumption of equal variances was met (p = 0.147). Regardless, we used Welch’s t-test as instructed. Our data met all other assumptions of an independent samples t-test.

Contrary to our predicitions, we did not find a significant difference in self-esteem between individuals who are in a relationship/married but living apart (M = 2.36, SD = 0.78) reported and those who are Single and never been married (M = 2.49, SD = 0.70); t(76.45) = -1.28, p = 0.203 (see Figure 1). The effect size was calculated using Cohen’s d, with a value of 0.18 (small effect; Cohen, 1988).

References

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