setwd("C:/Users/lenovo/Desktop/se")
de1.df <- read.csv("Data - Deans Dilemma.csv")
View(de1.df)
placed <- de1.df[ which(de1.df$Placement=='Placed'), ]
attach(placed)
aggregate(Salary~Gender,data=placed,FUN = mean)
## Gender Salary
## 1 F 253068.0
## 2 M 284241.9
H1: The average salary of the male MBAs is higher than the average salary of female MBAs.
t.test(Salary~Gender, data = placed)
##
## Welch Two Sample t-test
##
## data: Salary by Gender
## t = -3.0757, df = 243.03, p-value = 0.00234
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
## -51138.42 -11209.22
## sample estimates:
## mean in group F mean in group M
## 253068.0 284241.9
Based on the above output of the t-test, we can reject the hypothesis that the average salary of female and male are equal because (p<0.005).
aggregate(Salary~Gender,data=placed,FUN = mean)
## Gender Salary
## 1 F 253068.0
## 2 M 284241.9
From the above output we can see the avg salary of male is 284241.9
From the above output we can see the avg salary of male female is 253068.0.
t.test(Salary~Gender, data = placed)
##
## Welch Two Sample t-test
##
## data: Salary by Gender
## t = -3.0757, df = 243.03, p-value = 0.00234
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
## -51138.42 -11209.22
## sample estimates:
## mean in group F mean in group M
## 253068.0 284241.9
As we can see the p-value from the above output is 0.00234.
Therefore we can say the given hypothesis is right , as p-value is less than 0.01.