knitr::opts_chunk$set(echo = TRUE)

library(readxl)
library(ggpubr)
## Loading required package: ggplot2
library(rmarkdown)
library(effsize)
library(rstatix)
## 
## Attaching package: 'rstatix'
## The following object is masked from 'package:stats':
## 
##     filter
A6Q1 <- read_excel("~/Downloads/A6Q1.xlsx")
#CORRECTION: I corrected the file path so the dataset imports properly.

Before <- A6Q1$Before
After <- A6Q1$After

Differences <- After - Before

mean(Before, na.rm = TRUE)
## [1] 76.13299
median(Before, na.rm = TRUE)
## [1] 75.95988
sd(Before, na.rm = TRUE)
## [1] 7.781323
mean(After, na.rm = TRUE)
## [1] 71.58994
median(After, na.rm = TRUE)
## [1] 70.88045
sd(After, na.rm = TRUE)
## [1] 6.639509
hist(Differences,
     main = "Histogram of Difference Scores",
     xlab = "Weight (kg)",
     ylab = "Frequency",
     col = "blue",
     border = "black",
     breaks = 20)

#CORRECTION: I corrected the x-axis label to Weight (kg).

#Histogram of Difference Scores
#CORRECTION: I originally interpreted the histogram as abnormally distributed and negatively skewed.
#After I reviewed the histogram, I corrected my interpretation to normally distributed.
#The data is symmetrical.
#The data has a proper bell curve.

boxplot(Differences,
        main = "Distribution of Score Differences (After - Before)",
        ylab = "Difference in Scores",
        col = "blue",
        border = "darkblue")

#Boxplot
#There is one dot outside the boxplot.
#The dot is close to the whiskers.
#The dot is not very far away from the whiskers.
#CORRECTION: I corrected my interpretation of the outlier.
#The outlier is not concerning. The boxplot is normal.

shapiro.test(Differences)
## 
##  Shapiro-Wilk normality test
## 
## data:  Differences
## W = 0.94757, p-value = 0.3318
#Shapiro-Wilk Difference Scores
#The data is normally distributed, (p=.332).

t.test(Before, After, paired = TRUE, na.action = na.omit)
## 
##  Paired t-test
## 
## data:  Before and After
## t = 1.902, df = 19, p-value = 0.07245
## alternative hypothesis: true mean difference is not equal to 0
## 95 percent confidence interval:
##  -0.4563808  9.5424763
## sample estimates:
## mean difference 
##        4.543048
#Dependent T-Test
#CORRECTION: I corrected the mean and standard deviation values in my report.
#A Dependent T-Test was conducted to determine if there was a difference in body weight (kg) before the low calorie diet versis after the low calorie diet.
#There was no significant difference in weight before the diet (M = 76.13, SD = 7.78) versus after the diet (M = 71.59, SD = 6.64), t(19) = 1.90, p > .05.