1 Loading Libraries

#install.packages("broom")
#install.packages("ggplot2")

library(psych) # for the describe() command
library(broom) # for the augment() command
library(ggplot2) # to visualize our results
## 
## Attaching package: 'ggplot2'
## The following objects are masked from 'package:psych':
## 
##     %+%, alpha

2 Importing Data

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

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

3 State Your Hypothesis

We hypothesize that extroversion will significantly predict the mental flexibility questionnaire (state), and that the relationship will be positive.

My independent variable is: extroversion My dependent variable is: mental flexibility questionnaire (state)

4 Check Your Variables

# you only need to check the variables you're using in the current analysis
# although you checked them previously, it's always a good idea to look them over again to be sure that everything is correct

str(d)
## 'data.frame':    316 obs. of  7 variables:
##  $ X        : int  6291 6294 6312 6326 6331 6335 6348 6350 6357 6359 ...
##  $ mhealth  : chr  "none or NA" "depression" "anxiety disorder" "none or NA" ...
##  $ age      : chr  "1 under 18" "1 under 18" "1 under 18" "2 between 18 and 25" ...
##  $ big5_ext : num  3 5.67 3.33 2.67 2.33 ...
##  $ pas_covid: num  2.33 3.11 3.78 2.56 3.89 ...
##  $ mfq_state: num  4 4 3.12 3.12 3.88 ...
##  $ brs      : num  4 2.5 2.33 2 2.83 ...
# you can use the describe() command on an entire dataframe (d) or just on a single variable
describe(d)
##           vars   n    mean     sd  median trimmed    mad     min  max   range
## X            1 316 7579.03 756.15 7558.00 7580.76 965.17 6291.00 8860 2569.00
## mhealth*     2 316    4.57   1.60    5.00    4.70   0.00    1.00    8    7.00
## age*         3 316    1.28   0.73    1.00    1.09   0.00    1.00    4    3.00
## big5_ext     4 316    3.94   1.44    4.00    3.93   1.48    1.00    7    6.00
## pas_covid    5 316    3.35   0.65    3.44    3.36   0.66    1.00    5    4.00
## mfq_state    6 316    3.74   0.99    3.88    3.77   1.11    1.12    6    4.88
## brs          7 316    2.70   0.87    2.67    2.70   0.99    1.00    5    4.00
##            skew kurtosis    se
## X         -0.02    -1.26 42.54
## mhealth*  -1.04     1.07  0.09
## age*       2.73     6.62  0.04
## big5_ext   0.00    -0.77  0.08
## pas_covid -0.32     0.58  0.04
## mfq_state -0.27    -0.40  0.06
## brs        0.10    -0.66  0.05
# next, use histograms to examine your continuous variables
hist(d$big5_ext)

hist(d$mfq_state)

# last, use scatterplots to examine your continuous variables together
# Remember to put INDEPENDENT FIRST, so it goes on the x-axis
plot(d$big5_ext, d$mfq_state)

5 Run a Simple Regression

# to calculate standardized coefficients for the regression, we have to standardize our IV
d$big5_ext_std <- scale(d$big5_ext, center=T, scale=T)


# use the lm() command to run the regression
# dependent/outcome variable on the left of the ~, independent/predictor variable on the right.
reg_model <- lm(mfq_state ~ big5_ext_std, data = d)

# NO PEEKING AT YOUR MODEL RESULTS YET!

6 Check Your Assumptions

6.1 Simple Regression Assumptions

  • Should have two measurements for each participant
  • Variables should be continuous and normally distributed
  • Relationship between the variables should be linear
  • Outliers should be identified and removed
  • Residuals should be normal and have constant variance Note: we will NOT be evaluating whether our data meets this last assumption in this lab/homework

6.2 Create plots and view residuals

# do not edit this line of code
model.diag.metrics <- augment(reg_model)

# only replace the variables in 3 places in this line of code
ggplot(model.diag.metrics, aes(x = d$big5_ext_std, y = d$mfq_state)) +
  geom_point() +
  stat_smooth(method = lm, se = FALSE) +
  geom_segment(aes(xend = d$big5_ext_std, yend = .fitted), color = "red", size = 0.3)
## Warning: Using `size` aesthetic for lines was deprecated in ggplot2 3.4.0.
## ℹ Please use `linewidth` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
## `geom_smooth()` using formula = 'y ~ x'

6.3 Check linearity with Residuals vs Fitted plot

The plot below shows the residuals for each case and the fitted line. The red line is the average residual for the specified point of the dependent variable. If the assumption of linearity is met, the red line should be horizontal. This indicates that the residuals average to around zero. You can see that for this lab, the plot shows some non-linearity because there are more data points below the regression line than there are above it. Thus, there are some negative residuals that don’t have positive residuals to cancel them out. However, a bit of deviation is okay – just like with skewness and kurtosis with non-normality – there is a range of acceptability that we can work in before non-linearity becomes a critical issue.

For some examples of good Residuals vs Fitted plot and ones that show serious errors, check out this page. Looking at these examples, you can see the first case has a plot in which the red line sticks pretty closely to the zero line, while the other cases show some serious deviation. Our plot for the lab is much closer to the ‘good’ plot than it is to the ‘serious issues’ plots. So we’ll consider our data okay and proceed with our analysis. Obviously, this is quite a subjective decision. The key takeaway is that these evaluations are closely tied to the context of our sample, our data, and what we’re studying. It’s almost always a judgement call.

You’ll notice in the bottom right corner, there are some points with numbers included: these are participants (“cases”, indicated by row number) who have the most influence on the regression line (and so they might outliers). We’ll cover more about outliers in the next section.

[NOTE: All of the above text is informational. You do NOT need to edit it for the HW.]

plot(reg_model, 1)

Interpretation: Our Residual vs Fitted plot suggests there is some non-linearity between our IV (extroversion) and DV (mental flexibility questionnaire (state), so we are okay to proceed with the regression. There is a slight dip in our plot, but we can move forward with performing the regression.

For your HW: You need to generate this plot and then talk about how your plot compares to the ‘good’ / ‘bad, problematic’ plots linked to above in the “Issues with my Data” section below. Is it closer to the ‘good’ plots or one of the ‘bad’ plots? This is going to be a judgement call, so just do your best!

6.4 Check for outliers

The plot below addresses leverage, or how much each data point is able to influence the regression line. Outliers are points that have undue influence on the regression line, the way that Bill Gates entering the room has an undue influence on the mean income.

The Cook’s distance plot is a visualization of a score called (you guessed it) Cook’s distance, calculated for each case (aka participant) in the dataframe. Cook’s distance tells us how much the regression would change if the data point was removed. Ideally, we want all points to have the same influence on the regression line, although we accept that there will be some variability. The cutoff for a high Cook’s distance score is .5. For our data, some points do exert more influence than others, but none of them are close to the cutoff.

[NOTE: All of the above text is informational. You do NOT need to edit it for the HW.]

# Cook's distance
plot(reg_model, 4)

Interpretation: Our data does not have any severe outliers.

For your HW: You need to generate the plot, assess Cook’s distance in your dataset and identify any potential cases/participants that are prominent outliers using the cutoff for a high Cook’s distance score of .5. You will summarize this in the “Issues with my Data” section below.

6.5 Issues with My Data

Before interpreting our results, I assessed my variables to see if they met the assumptions for a simple linear regression. Analysis of a Residuals vs Fitted plot suggested that there is some non-linearity, and this does not violate the assumption of linearity. I also checked Cook’s distance plot to detect outliers. All cases were below the recommended cutoff for Cook’s distance of 0.5, so no outliers were detected.

7 View Statistical Test Output

summary(reg_model)
## 
## Call:
## lm(formula = mfq_state ~ big5_ext_std, data = d)
## 
## Residuals:
##     Min      1Q  Median      3Q     Max 
## -2.2005 -0.5556 -0.0116  0.6602  2.3364 
## 
## Coefficients:
##              Estimate Std. Error t value Pr(>|t|)    
## (Intercept)   3.73932    0.05331  70.149  < 2e-16 ***
## big5_ext_std  0.30620    0.05339   5.735 2.29e-08 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 0.9476 on 314 degrees of freedom
## Multiple R-squared:  0.09482,    Adjusted R-squared:  0.09194 
## F-statistic: 32.89 on 1 and 314 DF,  p-value: 2.29e-08
# note for write-up section below: to type lowercase Beta (ß) you need to hold down Alt key and type 225 on numeric keypad. If that doesn't work (upon releasing the Alt key), you should be able to copy/paste it from somewhere else.

Effect size, based on Regression Beta (Estimate) value Trivial: Less than 0.10 Small: 0.10–0.29 Medium: 0.30–0.49 Large: 0.50 or greater

8 Write Up Results

To test our hypothesis that extroversion will significantly predict mental flexibility questionnaire (state), and that the relationship will be positive, we used a simple linear regression to model the relationship between those variables. We confirmed that our data met the assumptions of a linear regression, checking the linearity of the relationship using a Residuals vs Fitted plot and checking for outliers using Cook’s distance plot. Note: we are skipping the assumptions of normality and homogeneity of variance for this assignment.

As predicted, we found that extroversion significantly predicts mental flexibility questionnaire (state), Adj. R2 = 0.09, F(0.9476,314) = 32.89, p < .001. The relationship between extroversion and mental flexibility questionnaire (state) was positive, ß = .306, t(314) = 5.735, p < .001 (refer to Figure 1). According to Cohen (1988), this constitutes a medium effect size (0.30 > 0.49).

References

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