1 Loading Libraries

#install.packages("apaTables")
#install.packages("kableExtra")

library(psych) # for the describe() command and the corr.test() command
## Warning: package 'psych' was built under R version 4.3.3
library(apaTables) # to create our correlation table
## Warning: package 'apaTables' was built under R version 4.3.3
library(kableExtra) # to create our correlation table
## Warning: package 'kableExtra' was built under R version 4.3.3

2 Importing Data

d <- read.csv(file="Data/projectdata.csv", header=T)

# For HW, import the your project dataset you cleaned previously; this will be the dataset you'll use throughout the rest of the semester

3 State Your Hypothesis

I predict there will be a significant relationship between perceptions of emerging adulthood, mindful attention, and need to belong. Specifically, perceptions of emerging adulthood will be positively related to mindful attention and negatively related to need to belong.

4 Check Your Variables

# you only need to check the variables you're using in the current analysis
# it's always a good idea to look them to be sure that everything is correct
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 ...
# Since we're focusing only on our continuous variables, we're going to subset them into their own dataframe. This will make some stuff we're doing later on easier.

d2 <- subset(d, select=c(moa_role, mindful, belong))

# You can use the describe() command on an entire dataframe (d) or just on a single variable (d$pss)

describe(d2)
##          vars    n mean   sd median trimmed  mad  min max range  skew kurtosis
## moa_role    1 3089 2.97 0.72   3.00    3.00 0.74 1.00   4  3.00 -0.33    -0.84
## mindful     2 3089 3.71 0.84   3.73    3.71 0.79 1.13   6  4.87 -0.07    -0.15
## belong      3 3089 3.23 0.61   3.30    3.25 0.59 1.30   5  3.70 -0.27    -0.12
##            se
## moa_role 0.01
## mindful  0.02
## belong   0.01
# NOTE: Our fake variable has high kurtosis, which we'll ignore for the lab because we created it to be problematic. If you have high skew or kurtosis for any of your project variables, you will need to discuss it below in the Issues with My Data and Write up Results sections, as well as in your final project manuscript if your data does not meet the normality assumption.


# also use histograms to examine your continuous variables
# Because we are looking at 3 variables, we will have 3 histograms.

hist(d$moa_role)

hist(d$mindful)

hist(d$belong)

# last, use scatterplots to examine your continuous variables together, for each pairing
# because we are looking at 3 variables, we will have 3 pairings/plots. 

plot(d$moa_role, d$mindful)

plot(d$mindful, d$belong)

plot(d$belong, d$moa_role)

5 Check Your Assumptions

5.1 Pearson’s Correlation Coefficient Assumptions

  • Should have two measurements for each participant.
  • Variables should be continuous and normally distributed.
  • Outliers should be identified and removed.
  • Relationship between the variables should be linear.

5.1.1 Checking for Outliers

Note: For correlations, you will NOT screen out outliers or take any action based on what you see here. This is something you will simply check and then discuss in your write-up.We will learn how to removed outliers in later analyses.

# We are going to standardize (z-score) all of our 3 variables, and check them for outliers.

d2$moa_role <- scale(d2$moa_role, center=T, scale=T)
hist(d2$moa_role)

sum(d2$moa_role < -3 | d2$moa_role > 3)
## [1] 0
d2$mindful <- scale(d2$mindful, center=T, scale=T)
hist(d2$mindful)

sum(d2$mindful < -3 | d2$mindful > 3)
## [1] 2
d2$belong <- scale(d2$belong, center=T, scale=T)
hist(d2$belong)

sum(d2$belong < -3 | d2$belong > 3)
## [1] 7

5.2 Issues with My Data

1 of my variables meet all of the assumptions of Pearson’s correlation coefficient. Two variables, mindful attention had 2,455 outliers, and need to belong had 1,952 outliers. Outliers can distort the relationship between two variables and sway the correlation in their direction. Any correlations with mindful attention and need to belong should be evaluated carefully due to these risks.

6 Run a Single Correlation

corr_output <- corr.test(d2$mindful, d2$belong)

7 View Single Correlation

corr_output
## Call:corr.test(x = d2$mindful, y = d2$belong)
## Correlation matrix 
##       [,1]
## [1,] -0.21
## Sample Size 
## [1] 3089
## These are the unadjusted probability values.
##   The probability values  adjusted for multiple tests are in the p.adj object. 
##      [,1]
## [1,]    0
## 
##  To see confidence intervals of the correlations, print with the short=FALSE option

8 Create a Correlation Matrix

corr_output_m <- corr.test(d2)

9 View Test Output

corr_output_m
## Call:corr.test(x = d2)
## Correlation matrix 
##          moa_role mindful belong
## moa_role     1.00    0.06   0.06
## mindful      0.06    1.00  -0.21
## belong       0.06   -0.21   1.00
## Sample Size 
## [1] 3089
## Probability values (Entries above the diagonal are adjusted for multiple tests.) 
##          moa_role mindful belong
## moa_role        0       0      0
## mindful         0       0      0
## belong          0       0      0
## 
##  To see confidence intervals of the correlations, print with the short=FALSE option
# Remember to report the p-values from the matrix that are ABOVE the diagonal!

Remember, Pearson’s r is also an effect size! We don’t report effect sizes for non-sig correlations.

  • Strong: Between |0.50| and |1|
  • Moderate: Between |0.30| and |0.49|
  • Weak: Between |0.10| and |0.29|
  • Trivial: Less than |0.09|

10 Write Up Results

To test my hypothesis that perceptions of emerging adulthood, mindful attention, and the need to belong would be correlated with one another, we calculated a series of Pearson’s correlation coefficients. One of the variables (perceptions of emerging adulthood) met the required assumptions of the test, meeting the standards of normality and containing no outliers. Two variables, mindful attention had 2,455 outliers, and need to belong had 1,952 outliers; so any significant results involving mindful attention and need to belong should be evaluated carefully.

As predicted, I found a significant correlation between mindful attention and need to belong (r = -0.21, p < .001). The effect size of this correlation was small (Cohen, 1988). Additionally, perceptions of emerging adulthood showed no meaningful relationships with mindful attention (r = 0.06, p < .1) or need to belong (r = 0.06, p < .1), with both effects being trivial in magnitude. Please refer to the correlation coefficients reported in Table 1.

Table 1: Means, standard deviations, and correlations with confidence intervals
Variable M SD 1 2
Perceptions of Emerging Adulthood 2.97 0.72
Mindful Attention 3.71 0.84 .06**
[.03, .10]
Need to Belong 3.23 0.61 .06** -.21**
[.03, .10] [-.24, -.17]
Note:
M and SD are used to represent mean and standard deviation, respectively. Values in square brackets indicate the 95% confidence interval. The confidence interval is a plausible range of population correlations that could have caused the sample correlation.
* indicates p < .05
** indicates p < .01.

References

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