# 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
We predict that here will be a significant difference in subjective well-being by people’s level of income, between high income and low income.
# you **only** need to check the variables you're using in the current analysis
## Checking the Categorical variable (IV)
str(d)
## 'data.frame': 3145 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" ...
## $ gender : chr "f" "m" "m" "f" ...
## $ swb : num 4.33 4.17 1.83 5.17 3.67 ...
## $ mindful : num 2.4 1.8 2.2 2.2 3.2 ...
## $ support : num 6 6.75 5.17 5.58 6 ...
## $ socmeduse : int 47 23 34 35 37 13 37 43 37 29 ...
# 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$income <- as.factor(d$income)
str(d)
## 'data.frame': 3145 obs. of 7 variables:
## $ ResponseID: chr "R_BJN3bQqi1zUMid3" "R_2TGbiBXmAtxywsD" "R_12G7bIqN2wB2N65" "R_39pldNoon8CePfP" ...
## $ income : Factor w/ 4 levels "1 low","2 middle",..: 1 1 4 4 2 4 1 1 3 4 ...
## $ gender : chr "f" "m" "m" "f" ...
## $ swb : num 4.33 4.17 1.83 5.17 3.67 ...
## $ mindful : num 2.4 1.8 2.2 2.2 3.2 ...
## $ support : num 6 6.75 5.17 5.58 6 ...
## $ socmeduse : int 47 23 34 35 37 13 37 43 37 29 ...
table(d$income, useNA = "always")
##
## 1 low 2 middle 3 high rather not say <NA>
## 879 876 535 855 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 3145 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$income)
##
## Descriptive statistics by group
## group: 1 low
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 879 4.24 1.32 4.33 4.27 1.48 1 7 6 -0.23 -0.48 0.04
## ------------------------------------------------------------
## group: 2 middle
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 876 4.59 1.32 4.83 4.67 1.24 1 7 6 -0.48 -0.37 0.04
## ------------------------------------------------------------
## group: 3 high
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 535 4.79 1.32 5 4.88 1.24 1 7 6 -0.61 -0.08 0.06
## ------------------------------------------------------------
## group: rather not say
## vars n mean sd median trimmed mad min max range skew kurtosis se
## X1 1 855 4.39 1.27 4.5 4.44 1.48 1 7 6 -0.27 -0.54 0.04
# lastly, use a boxplot to examine your chosen continuous and categorical variables together
boxplot(d$swb~d$income)
# 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,income != "rather not say") # use subset() to remove all participants from the additional level
table(d$income, useNA = "always") # verify that now there are ZERO participants in the additional level
##
## 1 low 2 middle 3 high rather not say <NA>
## 879 876 535 0 0
d$income <- droplevels(d$income) # use droplevels() to drop the empty factor
table(d$income, useNA = "always") # verify that now the entire factor level is removed
##
## 1 low 2 middle 3 high <NA>
## 879 876 535 0
d <- subset(d,income != "2 middle") # use subset() to remove all participants from the additional level
table(d$income, useNA = "always") # verify that now there are ZERO participants in the additional level
##
## 1 low 2 middle 3 high <NA>
## 879 0 535 0
d$income <- droplevels(d$income) # use droplevels() to drop the empty factor
table(d$income, useNA = "always") # verify that now the entire factor level is removed
##
## 1 low 3 high <NA>
## 879 535 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~income, data =d)
## Levene's Test for Homogeneity of Variance (center = median)
## Df F value Pr(>F)
## group 1 0.481 0.4881
## 1412
Levene’s test revealed that our data has no significantly different variances between the two comparison groups, high and low income, on their levels of subjective well-being.
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 2 middle participants, and the rather not 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 has no issue regarding homogeneity of variance, as Levene’s test was not significant . To accommodate for the rubric of this assignment, I will use Welch’s t-test instead of Students’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$income) # t_output will now show in your Global Environment
t_output
##
## Welch Two Sample t-test
##
## data: d$swb by d$income
## t = -7.6921, df = 1128.2, p-value = 3.142e-14
## alternative hypothesis: true difference in means between group 1 low and group 3 high is not equal to 0
## 95 percent confidence interval:
## -0.6977536 -0.4141365
## sample estimates:
## mean in group 1 low mean in group 3 high
## 4.237201 4.793146
# 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$income) # d_output will now show in your Global Environment
d_output
##
## Cohen's d
##
## d estimate: -0.4217356 (small)
## 95 percent confidence interval:
## lower upper
## -0.5304205 -0.3130508
## 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 high income in our sample would report significantly higher levels of subjective well-being than those with low income, we used an independent samples t-test. This required us to drop our middle income participants, and our rather not say participants from our sample, as we are limited to a 2 group comparison when using this test. We tested the homogeneity of variance with levene’s test and found no signs of heterogeneity (p = .49). This suggests that there is not an increased chance of type 1 error. To comply with the rubric, we used Welch’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 high income (M = 4.79, SD = 1.32) reported significantly higher levels of subjective well-being than men (M = 4.24, SD = 1.32); t(1128.2) = -7.69, p < .001 (see Figure 1). The effect size was calculated using Cohen’s d, with a value of 0.42 (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.
Grahe, J. E., Chalk, H. M., Cramblet Alvarez, L. D., Faas, C. S., Hermann, A. D., & McFall, J. P. (2018). Emerging adulthood measured at multiple institutions 2: The next generation data. Journal of Open Psychology Data, 6, 4. https://doi.org/10.5334/jopd.387y