normal.cor.test {ALSM}R Documentation

normal correation test

Description

normal correation test

Usage

normal.cor.test(residuals, MSE)

Arguments

residuals

residual

MSE

MSE

References

neter

Examples

##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (residuals, MSE)
{
    w <- 1:length(residuals)
    r <- cor(sort(residuals), sqrt(MSE) * (qnorm((w - 0.375)/(length(residuals) +
        0.25))))
    return(r)
  }

[Package ALSM version 0.2.0 Index]