# 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
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
There will be a significant difference in life satisfaction by people’s level of education, between high school level or less and complete college.
# you **only** need to check the variables you're using in the current analysis
## Checking the Categorical variable (IV)
str(d)
## 'data.frame': 3146 obs. of 7 variables:
## $ ResponseID: chr "R_BJN3bQqi1zUMid3" "R_2TGbiBXmAtxywsD" "R_12G7bIqN2wB2N65" "R_39pldNoon8CePfP" ...
## $ income : chr "1 low" "1 low" "rather not say" "rather not say" ...
## $ edu : chr "2 Currently in college" "5 Completed Bachelors Degree" "2 Currently in college" "2 Currently in college" ...
## $ idea : num 3.75 3.88 3.75 3.75 3.5 ...
## $ swb : num 4.33 4.17 1.83 5.17 3.67 ...
## $ efficacy : num 3.4 3.4 2.2 2.8 3 2.4 2.3 3 3 3.7 ...
## $ stress : num 3.3 3.3 4 3.2 3.1 3.5 3.3 2.4 2.9 2.7 ...
# 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$edu <- as.factor(d$edu)
str(d)
## 'data.frame': 3146 obs. of 7 variables:
## $ ResponseID: chr "R_BJN3bQqi1zUMid3" "R_2TGbiBXmAtxywsD" "R_12G7bIqN2wB2N65" "R_39pldNoon8CePfP" ...
## $ income : chr "1 low" "1 low" "rather not say" "rather not say" ...
## $ edu : Factor w/ 7 levels "1 High school diploma or less, and NO COLLEGE",..: 2 5 2 2 2 2 5 2 2 2 ...
## $ idea : num 3.75 3.88 3.75 3.75 3.5 ...
## $ swb : num 4.33 4.17 1.83 5.17 3.67 ...
## $ efficacy : num 3.4 3.4 2.2 2.8 3 2.4 2.3 3 3 3.7 ...
## $ stress : num 3.3 3.3 4 3.2 3.1 3.5 3.3 2.4 2.9 2.7 ...
table(d$edu, useNA = "always")
##
## 1 High school diploma or less, and NO COLLEGE
## 58
## 2 Currently in college
## 2548
## 3 Completed some college, but no longer in college
## 34
## 4 Complete 2 year College degree
## 178
## 5 Completed Bachelors Degree
## 135
## 6 Currently in graduate education
## 134
## 7 Completed some graduate degree
## 59
## <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$swb)
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 3146 4.47 1.32 4.67 4.53 1.48 1 7 6 -0.36 -0.45 0.02
# also use a histogram to visualize your continuous variable
hist(d$swb)
# 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$swb, group=d$edu)
##
## Descriptive statistics by group
## group: 1 High school diploma or less, and NO COLLEGE
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 58 4.09 1.56 4.17 4.15 1.73 1 7 6 -0.26 -0.84 0.2
## ------------------------------------------------------------
## group: 2 Currently in college
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 2548 4.47 1.32 4.67 4.53 1.48 1 7 6 -0.37 -0.47 0.03
## ------------------------------------------------------------
## group: 3 Completed some college, but no longer in college
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 34 3.99 1.54 4.25 4.02 1.36 1 7 6 -0.31 -0.69 0.26
## ------------------------------------------------------------
## group: 4 Complete 2 year College degree
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 178 4.54 1.32 4.58 4.58 1.36 1.17 7 5.83 -0.28 -0.61 0.1
## ------------------------------------------------------------
## group: 5 Completed Bachelors Degree
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 135 4.5 1.33 4.5 4.52 1.48 1.5 7 5.5 -0.08 -0.74 0.11
## ------------------------------------------------------------
## group: 6 Currently in graduate education
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 134 4.63 1.11 4.83 4.67 0.99 1 7 6 -0.42 0.04 0.1
## ------------------------------------------------------------
## group: 7 Completed some graduate degree
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 59 4.77 1.19 5 4.77 0.99 2.33 7 4.67 -0.08 -0.79 0.16
# lastly, use a boxplot to examine your chosen continuous and categorical variables together
boxplot(d$swb~d$edu)
# 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, edu != "7 Completed some graduate degree") # use subset() to remove all participants from the additional level
table(d$edu, useNA = "always") # verify that now there are ZERO participants in the additional level
##
## 1 High school diploma or less, and NO COLLEGE
## 58
## 2 Currently in college
## 2548
## 3 Completed some college, but no longer in college
## 34
## 4 Complete 2 year College degree
## 178
## 5 Completed Bachelors Degree
## 135
## 6 Currently in graduate education
## 134
## 7 Completed some graduate degree
## 0
## <NA>
## 0
d$edu <- droplevels(d$edu) # use droplevels() to drop the empty factor
table(d$edu, useNA = "always") # verify that now the entire factor level is removed
##
## 1 High school diploma or less, and NO COLLEGE
## 58
## 2 Currently in college
## 2548
## 3 Completed some college, but no longer in college
## 34
## 4 Complete 2 year College degree
## 178
## 5 Completed Bachelors Degree
## 135
## 6 Currently in graduate education
## 134
## <NA>
## 0
d <- subset(d, edu != "3 Completed some college, but no longer in college") # use subset() to remove all participants from the additional level
table(d$edu, useNA = "always") # verify that now there are ZERO participants in the additional level
##
## 1 High school diploma or less, and NO COLLEGE
## 58
## 2 Currently in college
## 2548
## 3 Completed some college, but no longer in college
## 0
## 4 Complete 2 year College degree
## 178
## 5 Completed Bachelors Degree
## 135
## 6 Currently in graduate education
## 134
## <NA>
## 0
d$edu <- droplevels(d$edu) # use droplevels() to drop the empty factor
table(d$edu, useNA = "always") # verify that now the entire factor level is removed
##
## 1 High school diploma or less, and NO COLLEGE
## 58
## 2 Currently in college
## 2548
## 4 Complete 2 year College degree
## 178
## 5 Completed Bachelors Degree
## 135
## 6 Currently in graduate education
## 134
## <NA>
## 0
d <- subset(d, edu != "4 Complete 2 year College degree") # use subset() to remove all participants from the additional level
table(d$edu, useNA = "always") # verify that now there are ZERO participants in the additional level
##
## 1 High school diploma or less, and NO COLLEGE
## 58
## 2 Currently in college
## 2548
## 4 Complete 2 year College degree
## 0
## 5 Completed Bachelors Degree
## 135
## 6 Currently in graduate education
## 134
## <NA>
## 0
d$edu <- droplevels(d$edu) # use droplevels() to drop the empty factor
table(d$edu, useNA = "always") # verify that now the entire factor level is removed
##
## 1 High school diploma or less, and NO COLLEGE
## 58
## 2 Currently in college
## 2548
## 5 Completed Bachelors Degree
## 135
## 6 Currently in graduate education
## 134
## <NA>
## 0
d <- subset(d, edu != "6 Currently in graduate education") # use subset() to remove all participants from the additional level
table(d$edu, useNA = "always") # verify that now there are ZERO participants in the additional level
##
## 1 High school diploma or less, and NO COLLEGE
## 58
## 2 Currently in college
## 2548
## 5 Completed Bachelors Degree
## 135
## 6 Currently in graduate education
## 0
## <NA>
## 0
d$edu <- droplevels(d$edu) # use droplevels() to drop the empty factor
table(d$edu, useNA = "always") # verify that now the entire factor level is removed
##
## 1 High school diploma or less, and NO COLLEGE
## 58
## 2 Currently in college
## 2548
## 5 Completed Bachelors Degree
## 135
## <NA>
## 0
d <- subset(d, edu != "2 Currently in college") # use subset() to remove all participants from the additional level
table(d$edu, useNA = "always") # verify that now there are ZERO participants in the additional level
##
## 1 High school diploma or less, and NO COLLEGE
## 58
## 2 Currently in college
## 0
## 5 Completed Bachelors Degree
## 135
## <NA>
## 0
d$edu <- droplevels(d$edu) # use droplevels() to drop the empty factor
table(d$edu, useNA = "always") # verify that now the entire factor level is removed
##
## 1 High school diploma or less, and NO COLLEGE
## 58
## 5 Completed Bachelors Degree
## 135
## <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.
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(swb~edu, data =d)
## Levene's Test for Homogeneity of Variance (center = median)
## Df F value Pr(>F)
## group 1 2.2669 0.1338
## 191
Levene’s test revealed that our data does not have a sig difference in variances between the two comparison groups, High school diploma or less, and NO COLLEGE, and Completed Bachelors Degree, on their levels of Life Satisfaction
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.
My independent variable has more than two levels. To proceed with this analysis, I will drop the other education levels (Completed some college, but no longer in college, Completed some graduate degree, Currently in college, Complete 2 year college degree, Currenlty in graduate education) 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 an 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.
# 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$swb~d$edu) # t_output will now show in your Global Environment
t_output
##
## Welch Two Sample t-test
##
## data: d$swb by d$edu
## t = -1.7328, df = 94.059, p-value = 0.08641
## alternative hypothesis: true difference in means between group 1 High school diploma or less, and NO COLLEGE and group 5 Completed Bachelors Degree is not equal to 0
## 95 percent confidence interval:
## -0.87116769 0.05920516
## sample estimates:
## mean in group 1 High school diploma or less, and NO COLLEGE
## 4.089080
## mean in group 5 Completed Bachelors Degree
## 4.495062
# 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$swb~d$edu) # d_output will now show in your Global Environment
d_output
##
## Cohen's d
##
## d estimate: -0.2901874 (small)
## 95 percent confidence interval:
## lower upper
## -0.60123003 0.02085513
## Remember to always take the ABSOLAUTE VALUE of the effect size value (i.e., it will never be negative)
To test our hypothesis that people with higher education in our sample would report significantly higher levels of Life Satisfaction than people who aren’t as education, we used an independent-samples t-test. This required us to drop some education levels (Completed some college, but no longer in college, Completed some graduate degree, Currently in college, Complete 2 year college degree, Currently in graduate education) 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 > .001). This suggests that there is an increased chance of Type I error. I ran Welch’s t-test as well, which does not assume homogeneity of variance. Our data met all other assumptions of an independent samples t-test.
As predicted, we found that High school diploma or less, and NO COLLEGE (M = 4.09, SD = 1.56) reported significantly higer levels of conscientiousness than Completed Bachelors Degree (M = 4.50, SD = 1.33); t(94.06) = -1.73, p > .05 (see Figure 1). The effect size was calculated using Cohen’s d, with a value of -0.29 (small effect; Cohen, 1988).
References
Cohen J. (1988). Statistical Power Analysis for the Behavioral Sciences. New York, NY: Routledge Academic. Grahe, J E, Chalk, H M, Cramblet Alvarez, L D, Faas, C S, Hermann, A D and McFall, J P 2018 Emerging Adulthood Measured at Multiple Institutions 2: The Data. Journal of Open Psychology Data, 6: 4, DOI: https://doi.org/10.5334/jopd.38