library(readxl)
library(ggpubr)
## Caricamento del pacchetto richiesto: ggplot2
library(dplyr)
## 
## Caricamento pacchetto: 'dplyr'
## I seguenti oggetti sono mascherati da 'package:stats':
## 
##     filter, lag
## I seguenti oggetti sono mascherati da 'package:base':
## 
##     intersect, setdiff, setequal, union
library(effectsize)
library(effsize)

A6Q3 <- read_excel("C:\\Users\\sonis\\OneDrive\\Desktop\\SLU\\AA 5221\\Assignment6\\A6Q3.xlsx")

A6Q3 %>%
  group_by(Exercise) %>%
  summarise(
    Mean = mean(Weight, na.rm = TRUE),
    Median = median(Weight, na.rm = TRUE),
    SD = sd(Weight, na.rm = TRUE),
    N = n()
  )
## # A tibble: 2 × 5
##   Exercise  Mean Median    SD     N
##   <chr>    <dbl>  <dbl> <dbl> <int>
## 1 cardio    74.7   73.3  7.57    25
## 2 nocardio  70.8   69.5  7.35    25
hist(A6Q3$Weight[A6Q3$Exercise == "nocardio"],
     breaks = 15,
     col = "skyblue",
     border = "white")

hist(A6Q3$Weight[A6Q3$Exercise == "cardio"],
     breaks = 15,
     col = "firebrick",
     border = "white")

#Data for nocardio group appears normally distributed.
#Data for cardio group appears normally distributed.

ggboxplot(A6Q3, x = "Exercise", y = "Weight",
          color = "Exercise",
          palette = "jco",
          add = "jitter")

# The nocardio group boxplot does not have outliers.
# The cardio group boxplot does not have outliers.

shapiro.test(A6Q3$Weight[A6Q3$Exercise == "nocardio"])
## 
##  Shapiro-Wilk normality test
## 
## data:  A6Q3$Weight[A6Q3$Exercise == "nocardio"]
## W = 0.97686, p-value = 0.8166
shapiro.test(A6Q3$Weight[A6Q3$Exercise == "cardio"])
## 
##  Shapiro-Wilk normality test
## 
## data:  A6Q3$Weight[A6Q3$Exercise == "cardio"]
## W = 0.96745, p-value = 0.5812
#The nocardio group is normally distributed, (p = .817).
#The cardio group is normally distributed, (p = .581).

t.test(Weight ~ Exercise, data = A6Q3, var.equal = TRUE)
## 
##  Two Sample t-test
## 
## data:  Weight by Exercise
## t = 1.8552, df = 48, p-value = 0.06971
## alternative hypothesis: true difference in means between group cardio and group nocardio is not equal to 0
## 95 percent confidence interval:
##  -0.3280454  8.1605622
## sample estimates:
##   mean in group cardio mean in group nocardio 
##               74.73336               70.81710
# An Independent T-Test was conducted to determine if there was a difference in Weight between people who don't do cardio and people who do cardio.
# nocardio group scores (M = 70.8, SD = 7.35) were not significantly different
# from cardio group scores (M = 74.7, SD = 7.57), (t(df 48) = 1.86, p = .07).
# p-value > 0.05 (0.07) so the effect size shouldn't be calculated because the difference was not significant.