normal.cor.test: normal correation test

Description Usage Arguments References Examples

Description

normal correation test

Usage

1

Arguments

residuals

residual

MSE

MSE

References

neter

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
##---- 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)
  }

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

Related to normal.cor.test in ALSM...