Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

LGB

This function uses the LGB Method to detect significant effects in unreplicated fractional factorials.


Description

This function uses the LGB Method to detect significant effects in unreplicated fractional factorials.

Usage

LGB(Beta, alpha = 0.05, rpt = TRUE, plt = TRUE, pltl = TRUE)

Arguments

Beta

input - this is the numeric vector of effects or coefficients to be tested

alpha

input - This is the significance level of the test

rpt

input - this is a logical variable that controls whether the report is written (default is TRUE)

plt

input - this is a logical variable that controls whether a half-normal plot is made (default is TRUE)

pltl

input - this is a logical variable that controls whether the significance limit line is drawn on the half-normal plot (default is TRUE)

Author(s)

John Lawson

References

Lawson, J., Grimshaw, S., Burt, J. (1998) "A quantitative method for identifying active contrasts in unreplicated factorial experiments based on the half-normal plot", Computational Statistics and Data Analysis, 26, 425-436.

Examples

data(chem)
modf<-lm(y~A*B*C*D,data=chem)
LGB(coef(modf)[-1],rpt=FALSE)


## The function is currently defined as
LGB <- function(Beta, alpha=.05,rpt=TRUE, plt=TRUE, pltl=TRUE) {
sigLGB<-LGBc(Beta,alpha,rpt,plt,pltl)
}

daewr

Design and Analysis of Experiments with R

v1.2-7
GPL-2
Authors
John Lawson [aut, cre], Gerhard Krennrich [aut]
Initial release
2021-2-18

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.