Function to estimate the Cochran test statistic.
Usage
cochran.test(x, ...)
# S3 method for default
cochran.test(
x,
var.index = 1,
replicate.index = 2,
material.index = 3,
laboratory.index = 4,
data.name = NULL,
alpha = 0.05,
...
)
# S3 method for lab.qcdata
cochran.test(x, alpha = 0.05, ...)
Arguments
- x
R object (used to select the method). See details.
- ...
Arguments passed to or from methods.
- var.index
Scalar with the column number corresponding to the observed variable (the critical to quality variable). Alternatively, a string with the name of a quality variable can be provided.
- replicate.index
Scalar with the column number corresponding to the index each replicate.
- material.index
Scalar corresponding to the replicated number.
- laboratory.index
Scalar that defines the index number of each laboratory.
- data.name
String specifying the name of the variable which appears on the plots. If name is not provided, it is retrieved from the object.
- alpha
The significance level (0.05 by default)
References
Wilrich Peter-T. (2013), Critical values of mandel's h and k, the grubbs and the Cochran test statistic. Asta-Advances in Statistical Analysis, 97(1):1-10.
ASTM E 691 (1999), Standard practice for conducting an interlaboratory study to determine the precision of a test method. American Society for Testing and Materials. West Conshohocken, PA, USA.
Examples
library(ILS)
data(Glucose)
Glucose.qcdata <- lab.qcdata(Glucose)
str(Glucose.qcdata)
#> Classes ‘lab.qcdata’ and 'data.frame': 120 obs. of 4 variables:
#> $ x : num 41 41.5 41.4 41.2 42 ...
#> $ replicate : Factor w/ 3 levels "1","2","3": 1 2 3 1 2 3 1 2 3 1 ...
#> $ material : Factor w/ 5 levels "A","B","C","D",..: 1 1 1 1 1 1 1 1 1 1 ...
#> $ laboratory: Factor w/ 8 levels "Lab1","Lab2",..: 1 1 1 2 2 2 3 3 3 4 ...
#> - attr(*, "data.name")= chr "Glucose"
cochran.test(Glucose.qcdata)
#>
#> Test Cochran
#>
#> Critical value: 0.5156875
#>
#> Alpha test: 0.00625
#> Smax Material C p.value
#> 1 Lab4 A 0.20033869 0.0231
#> 2 Lab4 B 0.15447962 0.0102
#> 3 Lab4 C 0.10935197 0.0029
#> 4 Lab2 D 0.08493741 0.0010
#> 5 Lab2 E 0.07416440 0.0005