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 mindfulness by people’s level of education, between high school diploma and completion of bachelor’s degree.

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':    2155 obs. of  7 variables:
##  $ ResponseID: chr  "R_BJN3bQqi1zUMid3" "R_2TGbiBXmAtxywsD" "R_12G7bIqN2wB2N65" "R_39pldNoon8CePfP" ...
##  $ stress    : num  3.3 3.3 4 3.2 3.1 3.5 3.3 2.4 2.9 2.7 ...
##  $ swb       : num  4.33 4.17 1.83 5.17 3.67 ...
##  $ mindful   : num  2.4 1.8 2.2 2.2 3.2 ...
##  $ socmeduse : int  47 23 34 35 37 13 37 43 37 29 ...
##  $ age       : chr  "1 between 18 and 25" "1 between 18 and 25" "1 between 18 and 25" "1 between 18 and 25" ...
##  $ edu       : chr  "2 Currently in college" "5 Completed Bachelors Degree" "2 Currently in college" "2 Currently in college" ...
# 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':    2155 obs. of  7 variables:
##  $ ResponseID: chr  "R_BJN3bQqi1zUMid3" "R_2TGbiBXmAtxywsD" "R_12G7bIqN2wB2N65" "R_39pldNoon8CePfP" ...
##  $ stress    : num  3.3 3.3 4 3.2 3.1 3.5 3.3 2.4 2.9 2.7 ...
##  $ swb       : num  4.33 4.17 1.83 5.17 3.67 ...
##  $ mindful   : num  2.4 1.8 2.2 2.2 3.2 ...
##  $ socmeduse : int  47 23 34 35 37 13 37 43 37 29 ...
##  $ age       : chr  "1 between 18 and 25" "1 between 18 and 25" "1 between 18 and 25" "1 between 18 and 25" ...
##  $ edu       : Factor w/ 7 levels "1 High school diploma or less, and NO COLLEGE",..: 2 5 2 2 2 2 5 2 2 2 ...
table(d$edu, useNA = "always")
## 
##      1 High school diploma or less, and NO COLLEGE 
##                                                 38 
##                             2 Currently in college 
##                                               1777 
## 3 Completed some college, but no longer in college 
##                                                 24 
##                   4 Complete 2 year College degree 
##                                                133 
##                       5 Completed Bachelors Degree 
##                                                 74 
##                  6 Currently in graduate education 
##                                                 78 
##                   7 Completed some graduate degree 
##                                                 31 
##                                               <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$mindful)
##    vars    n mean   sd median trimmed  mad  min max range  skew kurtosis   se
## X1    1 2155 3.72 0.84   3.73    3.72 0.79 1.13   6  4.87 -0.04    -0.15 0.02
# also use a histogram to visualize your continuous variable

hist(d$mindful)

# 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$mindful, 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 38 3.79 0.88   3.77    3.82 0.94 1.67 5.4  3.73 -0.22    -0.48 0.14
## ------------------------------------------------------------ 
## group: 2 Currently in college
##    vars    n mean   sd median trimmed  mad  min max range  skew kurtosis   se
## X1    1 1777 3.68 0.83   3.67    3.69 0.79 1.13   6  4.87 -0.03    -0.12 0.02
## ------------------------------------------------------------ 
## 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 24 3.76 0.86   3.77    3.77 0.84   2 5.53  3.53 -0.01    -0.54 0.17
## ------------------------------------------------------------ 
## group: 4 Complete 2 year College degree
##    vars   n mean  sd median trimmed  mad  min max range  skew kurtosis   se
## X1    1 133 3.92 0.8   3.93    3.93 0.89 1.67 5.6  3.93 -0.19    -0.23 0.07
## ------------------------------------------------------------ 
## group: 5 Completed Bachelors Degree
##    vars  n mean   sd median trimmed  mad min max range  skew kurtosis  se
## X1    1 74 4.08 0.88   4.07    4.09 0.84 1.8   6   4.2 -0.16    -0.07 0.1
## ------------------------------------------------------------ 
## group: 6 Currently in graduate education
##    vars  n mean   sd median trimmed  mad  min max range skew kurtosis   se
## X1    1 78 3.81 0.84    3.8    3.81 0.79 1.87   6  4.13 0.02    -0.02 0.09
## ------------------------------------------------------------ 
## group: 7 Completed some graduate degree
##    vars  n mean   sd median trimmed  mad  min  max range skew kurtosis   se
## X1    1 31 3.64 1.15   3.67    3.61 1.38 1.73 5.67  3.93 0.07    -1.16 0.21
# lastly, use a boxplot to examine your chosen continuous and categorical variables together

boxplot(d$mindful~d$edu)

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,  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 
##                                                 38 
##                             2 Currently in college 
##                                                  0 
## 3 Completed some college, but no longer in college 
##                                                 24 
##                   4 Complete 2 year College degree 
##                                                133 
##                       5 Completed Bachelors Degree 
##                                                 74 
##                  6 Currently in graduate education 
##                                                 78 
##                   7 Completed some graduate degree 
##                                                 31 
##                                               <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 
##                                                 38 
## 3 Completed some college, but no longer in college 
##                                                 24 
##                   4 Complete 2 year College degree 
##                                                133 
##                       5 Completed Bachelors Degree 
##                                                 74 
##                  6 Currently in graduate education 
##                                                 78 
##                   7 Completed some graduate degree 
##                                                 31 
##                                               <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 
##                                                 38 
## 3 Completed some college, but no longer in college 
##                                                  0 
##                   4 Complete 2 year College degree 
##                                                133 
##                       5 Completed Bachelors Degree 
##                                                 74 
##                  6 Currently in graduate education 
##                                                 78 
##                   7 Completed some graduate degree 
##                                                 31 
##                                               <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 
##                                            38 
##              4 Complete 2 year College degree 
##                                           133 
##                  5 Completed Bachelors Degree 
##                                            74 
##             6 Currently in graduate education 
##                                            78 
##              7 Completed some graduate degree 
##                                            31 
##                                          <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 
##                                            38 
##              4 Complete 2 year College degree 
##                                             0 
##                  5 Completed Bachelors Degree 
##                                            74 
##             6 Currently in graduate education 
##                                            78 
##              7 Completed some graduate degree 
##                                            31 
##                                          <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 
##                                            38 
##                  5 Completed Bachelors Degree 
##                                            74 
##             6 Currently in graduate education 
##                                            78 
##              7 Completed some graduate degree 
##                                            31 
##                                          <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 
##                                            38 
##                  5 Completed Bachelors Degree 
##                                            74 
##             6 Currently in graduate education 
##                                             0 
##              7 Completed some graduate degree 
##                                            31 
##                                          <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 
##                                            38 
##                  5 Completed Bachelors Degree 
##                                            74 
##              7 Completed some graduate degree 
##                                            31 
##                                          <NA> 
##                                             0
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 
##                                            38 
##                  5 Completed Bachelors Degree 
##                                            74 
##              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 
##                                            38 
##                  5 Completed Bachelors Degree 
##                                            74 
##                                          <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(mindful~edu, data =d)
## Levene's Test for Homogeneity of Variance (center = median)
##        Df F value Pr(>F)
## group   1  0.0656 0.7983
##       110

Levene’s test revealed that our data does not have significantly different variances between the two comparison groups, High School diploma or less or No College and Completed Bachelor’s Degree, on their levels of mindfulness.

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 currently in college, completed some college, completed 2 year college degree, currently in graduate education, and completed some graduate degree 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 an issue regarding homogeneity of variance, as Levene’s test was not significant. Even though we met these standards, we still for the purpose of this assignment 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$mindful~d$edu)  # t_output will now show in your Global Environment

7 View Test Output

t_output
## 
##  Welch Two Sample t-test
## 
## data:  d$mindful by d$edu
## t = -1.6447, df = 75.164, p-value = 0.1042
## 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.63683044  0.06082285
## sample estimates:
## mean in group 1 High school diploma or less, and NO COLLEGE 
##                                                    3.789474 
##                  mean in group 5 Completed Bachelors Degree 
##                                                    4.077477

8 Write Up Results

To test our hypothesis that people who have completed a Bachelor’s degree in our sample would report significantly higher levels of mindfulness than people who have a high school diploma or less or no college, we used an independent samples t-test . This required us to drop our currently in college, completed some college, completed 2 year college degree, currently in graduate education, and completed some graduate degree 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 > .05). 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.

We did not find a significant difference (p>0.05) in mindfulness between the levels of high school diploma or less or no college and a completed Bachelor’s degree.

References

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