Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding plotting feature for normality test #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions src/library/stats/R/shapiro.test.R
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,46 @@ shapiro.test <- function(x)
class(RVAL) <- "htest"
return(RVAL)
}

#exapnd the shapiro.test by adding the plotting feature to test normality
normarlity_test <- function(data,alpha=0.05,plotting = TRUE,verbose=TRUE) {

if(any(is.na(data))) warning('There are missing values in your data. NAs will be omited in the follows steps')

if (is.infinite(data)) stop("there is Inf value")

if(verbose) message("Test in progress...")

if(plotting == TRUE) {

par(mfrow=c(1,2))

#Histogram and Desity Plot
hist(data,freq = FALSE,main = "Histogram and Density pLot",col="lightgray",na.rm=TRUE)
lines(density(data,na.rm=TRUE),lty=1,col="red",lwd=2)

#Normal density plot for comparison
x<-c(round(min(data,na.rm = TRUE)):round(max(data,na.rm = TRUE)))
lines(x,dnorm(x,mean(data,na.rm = TRUE),sd(data,na.rm = TRUE)),col="blue",lwd=2,lty=2)
legend("topright", legend=c("Density", "Normality"),
col=c("red", "blue"), lty=1:2, cex=0.8)

#QQ plot
qqnorm(data,main="QQ-plot",col="blue")
qqline(data,lty=1,col="red",lwd=2)
}


#Shapiro-Wilk's method
result <- shapiro.test(data)
p_value <- result$p.value

if(p_value>alpha){
print(paste("You data is normal,because your p_value =",p_value,">",alpha))

}else{
print(paste("You data is not normal,because your p_value =",p_value,"<=",alpha))


}
}