R/normal.cor.test.R

#' @export

normal.cor.test<-function(residuals,MSE){
   w<-1:length(residuals)
   r<-cor(sort(residuals), sqrt(MSE)*(qnorm((w-0.375)/(length(residuals)+.25))) )
   return(r)
}

Try the ALSM package in your browser

Any scripts or data that you put into this service are public.

ALSM documentation built on May 2, 2019, 10:19 a.m.